We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f801df commit 133badbCopy full SHA for 133badb
.github/workflows/release.yml
@@ -104,7 +104,11 @@ jobs:
104
client-payload: '{"ref": "${{ github.ref }}", "VERSION_NUMBER": ${{ env.VERSION }}}'
105
notify:
106
# If any of job fails
107
- if: failure()
+ # 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
112
runs-on: ubuntu-latest
113
needs:
114
- release
0 commit comments