Skip to content

Commit 51075c7

Browse files
committed
ref: Avoid empty workflow
1 parent dc5d876 commit 51075c7

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,12 @@ jobs:
5151
with:
5252
pull-request-number: ${{ steps.open-pr.outputs.pr_number }}
5353
review-message: 'Auto approved automated PR'
54+
55+
skipped:
56+
runs-on: ubuntu-20.04
57+
if: |
58+
github.event.pull_request.merged == false
59+
|| startsWith(github.event.pull_request.title, "meta(changelog):") == false
60+
steps:
61+
- name: Sync skipped
62+
run: echo "OK"

0 commit comments

Comments
 (0)