Skip to content

Commit 4fc9829

Browse files
Merge pull request #102 from SelahattinSert/fix/workflow-syntax-error
fix: wrap if condition in double quotes to prevent YAML parsing error
2 parents e3024cc + d2bfed4 commit 4fc9829

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/post-merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
update-version:
1010
runs-on: ubuntu-latest
11-
if: ${{ github.actor != 'github-actions[bot]' && !contains(github.event.head_commit.message, 'chore: release version') }}
11+
if: "${{ github.actor != 'github-actions[bot]' && !contains(github.event.head_commit.message, 'chore: release version') }}"
1212

1313
steps:
1414
- name: Checkout repository

0 commit comments

Comments
 (0)