Skip to content

Commit 71b1a98

Browse files
committed
ci: Fix invalid yaml
It seems to not like double quotes.
1 parent 46de4e2 commit 71b1a98

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/gitflow-sync-master.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414
name: Create PR develop->master
1515
runs-on: ubuntu-20.04
1616
if: |
17-
github.event.pull_request.merged == true
18-
&& startsWith(github.event.pull_request.title, "meta(changelog):")
17+
github.event.pull_request.merged == true &&
18+
startsWith(github.event.pull_request.title, 'meta(changelog):')
1919
permissions:
2020
pull-requests: write
2121
contents: write
@@ -55,8 +55,8 @@ jobs:
5555
skipped:
5656
runs-on: ubuntu-20.04
5757
if: |
58-
github.event.pull_request.merged == false
59-
|| startsWith(github.event.pull_request.title, "meta(changelog):") == false
58+
github.event.pull_request.merged == false ||
59+
startsWith(github.event.pull_request.title, 'meta(changelog):') == false
6060
steps:
6161
- name: Sync skipped
6262
run: echo "OK"

0 commit comments

Comments
 (0)