Skip to content

Commit b911372

Browse files
authored
Merge pull request #1527 from ydb-platform/slo-report
ci: add workflow for publishing slo results
2 parents 2e44601 + 1a28199 commit b911372

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+
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

Comments
 (0)