Skip to content

Commit e5c48b4

Browse files
authored
Merge branch refs/heads/1.21.x into 1.22.x
2 parents 150f854 + 912d284 commit e5c48b4

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions
2+
3+
name: Merge maintained branch
4+
5+
on:
6+
push:
7+
branches:
8+
- "1.21.x"
9+
10+
jobs:
11+
merge:
12+
name: Merge branch
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: "Checkout"
16+
uses: actions/checkout@v3
17+
- name: "Merge branch"
18+
uses: everlytic/branch-merge@1.1.5
19+
with:
20+
github_token: "${{ secrets.PHPSTAN_BOT_TOKEN }}"
21+
source_ref: ${{ github.ref }}
22+
target_branch: '1.22.x'
23+
commit_message_template: 'Merge branch {source_ref} into {target_branch}'

0 commit comments

Comments
 (0)