Skip to content

Commit

Permalink
Merge pull request #1527 from ydb-platform/slo-report
Browse files Browse the repository at this point in the history
ci: add workflow for publishing slo results
  • Loading branch information
asmyasnikov authored Oct 24, 2024
2 parents 2e44601 + 1a28199 commit b911372
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/slo-report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: slo-report

on:
workflow_run:
workflows: ['slo']
types:
- completed

jobs:
test-ydb-slo-action:
runs-on: ubuntu-latest
name: Publish YDB SLO Report
permissions:
contents: read
pull-requests: write
if: github.event.workflow_run.conclusion == 'success'
steps:
- name: Publish YDB SLO Report
uses: ydb-platform/ydb-slo-action/report@main
with:
token: ${{ secrets.GITHUB_TOKEN }}
run_id: ${{ github.event.workflow_run.id }}

0 comments on commit b911372

Please sign in to comment.