Skip to content

Commit

Permalink
Merge branch refs/heads/1.21.x into 1.22.x
Browse files Browse the repository at this point in the history
  • Loading branch information
phpstan-bot authored May 29, 2023
2 parents 150f854 + 912d284 commit e5c48b4
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/merge-maintained-branch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions

name: Merge maintained branch

on:
push:
branches:
- "1.21.x"

jobs:
merge:
name: Merge branch
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: actions/checkout@v3
- name: "Merge branch"
uses: everlytic/branch-merge@1.1.5
with:
github_token: "${{ secrets.PHPSTAN_BOT_TOKEN }}"
source_ref: ${{ github.ref }}
target_branch: '1.22.x'
commit_message_template: 'Merge branch {source_ref} into {target_branch}'

0 comments on commit e5c48b4

Please sign in to comment.