From 200e1d982978302a8cd21aa7fd90c7b82e43cf8c Mon Sep 17 00:00:00 2001 From: Trirmadura J Ariyawansa Date: Fri, 7 Aug 2026 13:36:32 -0400 Subject: [PATCH] ci: add Slack PR review notification caller (pinned @626595f508220b53805c86c1b54d089420add4d3) --- .../slack-pr-review-notification.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/slack-pr-review-notification.yml diff --git a/.github/workflows/slack-pr-review-notification.yml b/.github/workflows/slack-pr-review-notification.yml new file mode 100644 index 00000000..b1caff49 --- /dev/null +++ b/.github/workflows/slack-pr-review-notification.yml @@ -0,0 +1,19 @@ +# Caller: posts PR-review activity to the "PR Summary" Slack workflow with @-mentions. +# Repo-agnostic (the reusable auto-detects github.repository). +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