We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8999a1d commit c99a48cCopy full SHA for c99a48c
.github/workflows/release.yml
@@ -48,15 +48,12 @@ jobs:
48
release:
49
name: Create Release
50
runs-on: ubuntu-latest
51
+ needs: [lint, test]
52
if: |
53
github.ref == 'refs/heads/main' &&
54
github.actor != 'github-actions[bot]' &&
55
!contains(github.event.head_commit.message, 'chore(release)') &&
- !contains(github.event.head_commit.message, '[skip ci]') &&
56
- !contains(github.event.head_commit.message, 'docs: update CHANGELOG.md') &&
57
- !contains(github.event.head_commit.message, 'docs(changelog)') &&
58
- !matches(github.event.head_commit.message, '^[0-9]+\.[0-9]+\.[0-9]+$')
59
- needs: [lint, test]
+ !contains(github.event.head_commit.message, '[skip ci]')
60
concurrency: release
61
62
steps:
0 commit comments