mirror of https://github.com/abpframework/abp.git
committed by
GitHub
1 changed files with 24 additions and 0 deletions
@ -0,0 +1,24 @@ |
|||||
|
name: Merge branch dev with rel-4.1 |
||||
|
on: |
||||
|
push: |
||||
|
branches: |
||||
|
- rel-4.1 |
||||
|
jobs: |
||||
|
merge-dev-with-rel-4-1: |
||||
|
runs-on: ubuntu-latest |
||||
|
steps: |
||||
|
- uses: actions/checkout@v2 |
||||
|
with: |
||||
|
ref: dev |
||||
|
- name: Reset promotion branch |
||||
|
run: | |
||||
|
git fetch origin $GITHUB_REF:$GITHUB_REF |
||||
|
git reset --hard $GITHUB_REF |
||||
|
- name: Create Pull Request |
||||
|
uses: peter-evans/create-pull-request@v3 |
||||
|
with: |
||||
|
branch: auto-rel-merge-pr-${{github.run_number}} |
||||
|
title: Merge branch dev with rel-4.1 |
||||
|
body: This PR generated automatically to merge dev with rel-4.1. Please review the changed files before merging to prevent any errors that may occur. |
||||
|
reviewers: ${{github.actor}} |
||||
|
token: ${{ github.token }} |
||||
Loading…
Reference in new issue