Skip to content

Commit f5d610b

Browse files
authored
Update workflow to sync master with develop branch
1 parent 5290eb2 commit f5d610b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/merge-master-to-4.0.yml renamed to .github/workflows/merge-master-to-develop.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Sync dev/4.0
1+
name: Sync develop branch
22

33
on:
44
push:
@@ -9,7 +9,7 @@ on:
99

1010
env:
1111
SYNC_SOURCE_BRANCH: master
12-
SYNC_TARGET_BRANCH: dev/4.0
12+
SYNC_TARGET_BRANCH: develop
1313

1414
permissions:
1515
contents: write
@@ -20,15 +20,15 @@ concurrency:
2020

2121
jobs:
2222
sync-dev-branch:
23-
name: Merge master into dev/4.0
23+
name: Merge master into develop branch
2424
# Keep this named after the GitHub repository.
2525
# GitHub Actions does not allow workflow env values in jobs.<job_id>.if.
2626
if: github.repository == 'phpbb-extensions/phpbb-ext-skeleton' && github.event.repository.fork == false
2727
runs-on: ubuntu-latest
2828

2929
steps:
3030
- name: Check out repository
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v6
3232
with:
3333
fetch-depth: 0
3434

0 commit comments

Comments
 (0)