Skip to content

Commit e871a3d

Browse files
authored
ci: disable the slack notifications until we stabilize the release workflow (#1909)
**Related Ticket:** _{link related ticket here}_ ### Description of Changes Disabling the slack failure notifications until we stabilize the release workflow, to avoid noise ### Notes & Questions About Changes _{Add additonal notes and outstanding questions here related to changes in this pull request}_ ### Validation / Testing _{Update with info on what can be manually validated in the Deploy Preview link for example "Validate style updates to selection modal do NOT affect cards"}_
2 parents 7f801df + 133badb commit e871a3d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,11 @@ jobs:
104104
client-payload: '{"ref": "${{ github.ref }}", "VERSION_NUMBER": ${{ env.VERSION }}}'
105105
notify:
106106
# If any of job fails
107-
if: failure()
107+
# Temporarily disable Slack notifications to avoid noise while stabilizing the release workflow.
108+
# This prevents both failure and no-commit alerts from posting to Slack,
109+
# but preserves the structure of the job so it can be easily re-enabled later.
110+
# To re-enable, change "if: false" back to "if: failure()".
111+
if: false
108112
runs-on: ubuntu-latest
109113
needs:
110114
- release

0 commit comments

Comments
 (0)