Notify Slack when Craft Cloud reviews are requested - #197
Draft
timkelty wants to merge 6 commits into
Draft
Conversation
There was a problem hiding this comment.
Pull request overview
Adds a GitHub Actions workflow in craftcms/cloud that delegates “review requested” events to the shared craftcms/.github reusable workflow, so Craft Cloud team review requests can be forwarded to Slack.
Changes:
- Introduces a new workflow that triggers on
pull_request_target→review_requested. - Calls the shared reusable workflow (
craftcms/.github/.github/workflows/notify-craft-cloud-review.yml@v3) and forwards the Slack webhook secret.
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 1 out of 1 changed files in this pull request and generated no new comments.
Suppressed comments (1)
.github/workflows/notify-craft-cloud-review.yml:13
- The job currently runs for every
review_requestedevent (including individual reviewer requests), which will create unnecessary workflow runs/noise. Add a job-levelif:guard so the reusable workflow only runs when thecraft-cloudteam is the requested reviewer team.
notify:
uses: craftcms/.github/.github/workflows/notify-craft-cloud-review.yml@v3
secrets:
slack_webhook_url: ${{ secrets.CRAFT_CLOUD_SLACK_WEBHOOK_URL }}
timkelty
force-pushed
the
timkelty/notify-craft-cloud-reviews
branch
from
August 18, 2026 17:17
5086ee3 to
c4a7020
Compare
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Calls the shared PR Slack notification workflow when the Craft Cloud team is requested for review, posting to #craft-cloud. The caller passes organization secrets with secrets: inherit.
Depends on craftcms/.github#106.