fix(ci): restore refactor workflow parity through shared automation #516
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Caller: posts PR-review activity to the "PR Summary" Slack workflow with @-mentions. | |
| # Copy this file verbatim into each of the 6 repos' .github/workflows/ — it is | |
| # repo-agnostic (the reusable auto-detects github.repository). Pin @<SHA> to the | |
| # devtools main commit that added reusable-slack-pr-review-notification.yml. | |
| name: Slack PR Review Notification | |
| on: | |
| pull_request: | |
| types: [review_requested, synchronize] | |
| pull_request_review: | |
| types: [submitted] | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| id-token: write | |
| jobs: | |
| call: | |
| uses: aws/agentcore-devx-devtools/.github/workflows/reusable-slack-pr-review-notification.yml@626595f508220b53805c86c1b54d089420add4d3 | |
| secrets: inherit |