We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82038b0 commit 154b1f5Copy full SHA for 154b1f5
.github/workflows/deploy.yml
@@ -164,7 +164,7 @@ jobs:
164
name: 📦 Create GitHub Release
165
runs-on: ubuntu-latest
166
needs: [deploy, notify-indexnow] # Run after deployment and notification
167
- if: success() # Only run if deployment was successful
+ if: success() && !contains(github.event.head_commit.message, '[skip deploy]') # Only run if deployment was successful AND not skipping deploy
168
permissions:
169
contents: write
170
0 commit comments