mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 02:40:26 -06:00
acbb6a1119
Assigns ownership of Alerting backend components to grafana/alerting-backend, due to deprecation of the existing grafana/alerting-backend-product team.
38 lines
1.1 KiB
YAML
38 lines
1.1 KiB
YAML
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '0 0 * * 1'
|
|
|
|
jobs:
|
|
gen-swagger:
|
|
name: Alerting Swagger spec generation cron job
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 2
|
|
- name: Set go version
|
|
uses: actions/setup-go@v4
|
|
with:
|
|
go-version-file: go.mod
|
|
- name: Build swagger
|
|
run: |
|
|
make -C pkg/services/ngalert/api/tooling post.json api.json
|
|
- name: Open Pull Request
|
|
uses: peter-evans/create-pull-request@v5
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
commit-message: "chore: update alerting swagger spec"
|
|
title: "Alerting: Update Swagger spec"
|
|
body: |
|
|
This is an automated pull request to update the alerting swagger spec.
|
|
Please review and merge.
|
|
branch: update-alerting-swagger-spec
|
|
delete-branch: true
|
|
labels: 'area/alerting,type/docs,no-changelog'
|
|
team-reviewers: 'grafana/alerting-backend'
|
|
draft: false
|
|
|