From ae46bc0927f89ea6da02510f3ce4141b904d6c6d Mon Sep 17 00:00:00 2001 From: darshit2308 Date: Wed, 13 May 2026 02:19:40 +0530 Subject: [PATCH] Add central review-sync canary workflow (dry-run) --- .../workflows/central-review-sync-canary.yml | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/central-review-sync-canary.yml diff --git a/.github/workflows/central-review-sync-canary.yml b/.github/workflows/central-review-sync-canary.yml new file mode 100644 index 000000000..fcf34f77f --- /dev/null +++ b/.github/workflows/central-review-sync-canary.yml @@ -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 \ No newline at end of file