We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eebd1cf commit 523be8eCopy full SHA for 523be8e
.github/workflows/slo-report.yml
@@ -0,0 +1,22 @@
1
+name: SLO Report
2
+
3
+on:
4
+ workflow_run:
5
+ workflows: [ 'SLO' ]
6
+ types:
7
+ - completed
8
9
+jobs:
10
+ ydb-slo-action-report:
11
+ runs-on: ubuntu-latest
12
+ name: Publish YDB SLO Report
13
+ permissions:
14
+ contents: read
15
+ pull-requests: write
16
+ if: github.event.workflow_run.conclusion == 'success'
17
+ steps:
18
+ - name: Publish YDB SLO Report
19
+ uses: ydb-platform/ydb-slo-action/report@main
20
+ with:
21
+ github_token: ${{ secrets.GITHUB_TOKEN }}
22
+ github_run_id: ${{ github.event.workflow_run.id }}
0 commit comments