Skip to content

Commit 98cb7a8

Browse files
authored
ci(release): fix release v0.100.0 (#3785)
ci(release): fix release
1 parent ef4f21e commit 98cb7a8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/changesets-pr.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
# and not when the branch is created.
1919
# This is to avoid running the workflow when a release/* branch is created.
2020
if: |
21-
github.event.head_commit.message != 'ci(release): versioning packages and changesets' &&
21+
startsWith(github.event.head_commit.message, 'ci(release):') &&
2222
github.event.before != '0000000000000000000000000000000000000000'
2323
2424
steps:

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
# and not when the branch is created.
1919
# This is to avoid running the workflow when a release/* branch is created.
2020
if: |
21-
github.event.head_commit.message == 'ci(release): versioning packages and changesets' &&
21+
startsWith(github.event.head_commit.message, 'ci(release):') &&
2222
github.event.before != '0000000000000000000000000000000000000000'
2323
2424
steps:

0 commit comments

Comments
 (0)