Skip to content

Commit

Permalink
ci: add slo report action
Browse files Browse the repository at this point in the history
  • Loading branch information
polRk committed Dec 5, 2024
1 parent 058b5a4 commit 85f7f71
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:
ydb-slo-action-report:
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:
github_token: ${{ secrets.GITHUB_TOKEN }}
github_run_id: ${{ github.event.workflow_run.id }}

0 comments on commit 85f7f71

Please sign in to comment.