Skip to content

Commit

Permalink
feat: separate skipping ci from release [skip release]
Browse files Browse the repository at this point in the history
  • Loading branch information
DanWebb committed Apr 24, 2024
1 parent c4c3417 commit 2cb0de0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ jobs:
issues: write
pull-requests: write
id-token: write
if: "!contains(toJSON(github.event.commits.*.message), '[skip ci]')"
if:
- "!contains(toJSON(github.event.commits.*.message), '[skip ci]')"
- "!contains(toJSON(github.event.commits.*.message), '[skip release]')"
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down

0 comments on commit 2cb0de0

Please sign in to comment.