fix(ci): Notification workflow for Slack#8167
Merged
justin-tahara merged 1 commit intomainfrom Feb 4, 2026
Merged
Conversation
Contributor
Greptile OverviewGreptile SummaryRemoved AWS Secrets Manager integration from Slack notification jobs in the deployment workflow. The change switches from fetching Key Changes:
This simplifies the workflow by eliminating dependencies on AWS OIDC authentication and Secrets Manager for these notification steps, fixing failures caused by missing AWS secrets. Confidence Score: 5/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant GHA as GitHub Actions
participant Secret as GitHub Secrets
participant Slack as Slack Action
participant SlackAPI as Slack API
Note over GHA: notify-slack-on-tag-check-failure job
GHA->>GHA: Check if check-version-tag failed
alt check-version-tag failed
GHA->>Secret: Fetch MONITOR_DEPLOYMENTS_WEBHOOK
Secret-->>GHA: Return webhook URL
GHA->>Slack: Call slack-notify action
Slack->>SlackAPI: POST notification with webhook URL
SlackAPI-->>Slack: Notification sent
end
Note over GHA: notify-slack-on-deployment-failure job
GHA->>GHA: Check if any build jobs failed
alt Any build job failed
GHA->>GHA: Determine which jobs failed
GHA->>Secret: Fetch MONITOR_DEPLOYMENTS_WEBHOOK
Secret-->>GHA: Return webhook URL
GHA->>Slack: Call slack-notify action
Slack->>SlackAPI: POST notification with webhook URL
SlackAPI-->>Slack: Notification sent
end
|
jmelahman
approved these changes
Feb 4, 2026
wenxi-onyx
pushed a commit
that referenced
this pull request
Feb 4, 2026
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.
Description
These steps fail since we are reaching out to AWS for a secret that does not exist.
This aligns usage across the codebase.
How Has This Been Tested?
Additional Options
Summary by cubic
Fix Slack notifications in the deployment workflow by reading the webhook from GitHub Secrets instead of AWS Secrets Manager. This stops CI failures caused by missing AWS secrets and standardizes secret usage.
Written for commit 92d4380. Summary will update on new commits.