Skip to content

Commit eb20cfe

Browse files
authored
ci: allow beta releases for chore commits (#529)
1 parent e4af62c commit eb20cfe

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/run_release.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,8 @@ jobs:
3434
github.event_name == 'workflow_dispatch' ||
3535
(
3636
github.event_name == 'push' &&
37-
!startsWith(github.event.head_commit.message, 'docs:') &&
38-
!startsWith(github.event.head_commit.message, 'chore:') &&
39-
!startsWith(github.event.head_commit.message, 'ci:')
37+
!startsWith(github.event.head_commit.message, 'docs') &&
38+
!startsWith(github.event.head_commit.message, 'ci')
4039
)
4140
runs-on: ubuntu-latest
4241
env:

0 commit comments

Comments
 (0)