Skip to content

Commit

Permalink
ci: ensure sync-master-develop.yml does not skip on merges to `mast…
Browse files Browse the repository at this point in the history
…er` (#407)
  • Loading branch information
Zidious authored Nov 26, 2023
1 parent d6f06bb commit 4a6f489
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/sync-master-develop.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
name: Sync master/develop branches

on:
pull_request:
types: [closed]
branches: master
types: closed

jobs:
create_sync_pull_request:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
if: github.event.pull_request.merged == 'true'
steps:
- uses: dequelabs/action-sync-branches@v1
with:
Expand Down

0 comments on commit 4a6f489

Please sign in to comment.