Skip to content

Commit d0274ca

Browse files
fix: Update condition in bump-patch workflow to ensure proper execution
1 parent d4289c8 commit d0274ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/bump-patch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
if: >-
1919
(github.event_name == 'workflow_run' &&
2020
github.event.workflow_run.conclusion == 'success' &&
21-
github.event.workflow_run.head_branch == 'develop') ||
21+
github.event.workflow_run.head_branch == 'develop') &&
2222
${{!(github.event_name == 'push' && startsWith(github.event.head_commit.message, 'ci: bump'))}}
2323
permissions:
2424
contents: write

0 commit comments

Comments
 (0)