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 0326f62 commit e349073Copy full SHA for e349073
.github/workflows/ci.yml
@@ -84,7 +84,13 @@ jobs:
84
path: packages/*.*
85
deploy:
86
name: Deploy
87
- if: github.ref == 'refs/heads/main' && github.event_name == 'push'
+ if: |
88
+ github.ref == 'refs/heads/main' &&
89
+ github.event_name == 'push' &&
90
+ (
91
+ startsWith(github.event.head_commit.message, 'feat:') ||
92
+ startsWith(github.event.head_commit.message, 'fix:')
93
+ )
94
needs: [pack]
95
runs-on: ubuntu-latest
96
steps:
0 commit comments