We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents deb755e + ae46bc0 commit 57d5fe2Copy full SHA for 57d5fe2
1 file changed
.github/workflows/central-review-sync-canary.yml
@@ -0,0 +1,30 @@
1
+name: Central Review Sync Canary
2
+
3
+on:
4
+ workflow_dispatch:
5
6
+permissions:
7
+ contents: read
8
+ pull-requests: read
9
+ issues: write
10
+ checks: read
11
12
+jobs:
13
+ review-sync-canary:
14
+ runs-on: ubuntu-latest
15
16
+ steps:
17
+ - name: Harden runner
18
+ uses: step-security/harden-runner@v2
19
+ with:
20
+ egress-policy: audit
21
22
+ - name: Checkout repository
23
+ uses: actions/checkout@v4
24
25
+ - name: Run central review sync (dry-run)
26
+ uses: darshit2308/sdk-automations/actions/review-sync@main
27
28
+ config-path: .github/hiero-automation.yml
29
+ github-token: ${{ github.token }}
30
+ dry-run: true
0 commit comments