Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .github/workflows/central-review-sync-canary.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Central Review Sync Canary

on:
workflow_dispatch:

permissions:
contents: read
pull-requests: read
issues: write
checks: read

jobs:
review-sync-canary:
runs-on: ubuntu-latest

steps:
- name: Harden runner
uses: step-security/harden-runner@v2
with:
egress-policy: audit

- name: Checkout repository
uses: actions/checkout@v4

- name: Run central review sync (dry-run)
uses: darshit2308/sdk-automations/actions/review-sync@main
with:
config-path: .github/hiero-automation.yml
github-token: ${{ github.token }}
dry-run: true
Loading