Skip to content

Commit 523be8e

Browse files
feat: new slo reporter (#217)
1 parent eebd1cf commit 523be8e

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/slo-report.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)