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.
2 parents 2e44601 + 1a28199 commit b911372Copy full SHA for b911372
.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
+ test-ydb-slo-action:
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
+ token: ${{ secrets.GITHUB_TOKEN }}
22
+ run_id: ${{ github.event.workflow_run.id }}
0 commit comments