Skip to content

Commit 133badb

Browse files
committed
ci: disable the slack notifications until we stabilize the release workflow
1 parent 7f801df commit 133badb

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)