We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab0ec0e commit f918df5Copy full SHA for f918df5
1 file changed
.github/workflows/deploy.yml
@@ -74,8 +74,9 @@ jobs:
74
75
- name: Check for skip tags
76
id: skip
77
+ env:
78
+ COMMIT_MSG: ${{ github.event.head_commit.message || github.event.pull_request.title || '' }}
79
run: |
- COMMIT_MSG="${{ github.event.head_commit.message || github.event.pull_request.title || '' }}"
80
echo "skip_cms=$([[ "$COMMIT_MSG" == *"[skip-cms]"* ]] && echo 'true' || echo 'false')" >> $GITHUB_OUTPUT
81
echo "skip_web=$([[ "$COMMIT_MSG" == *"[skip-web]"* ]] && echo 'true' || echo 'false')" >> $GITHUB_OUTPUT
82
0 commit comments