We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 12d9e29 + 95970a8 commit 569a870Copy full SHA for 569a870
1 file changed
.github/workflows/release.yml
@@ -9,6 +9,9 @@ jobs:
9
release:
10
name: Create a PR for release workflow
11
runs-on: ubuntu-latest
12
+ # Skip if commit message contains [skip ci], [ci skip], or docs:
13
+ if: "!contains(github.event.head_commit.message, '[skip ci]') && !contains(github.event.head_commit.message, '[ci skip]') && !startsWith(github.event.head_commit.message, 'docs:')"
14
+
15
steps:
16
- uses: actions/checkout@v4
17
with:
0 commit comments