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 rel-4.0 with rel-3.3 |
||||
|
on: |
||||
|
push: |
||||
|
branches: |
||||
|
- rel-3.3 |
||||
|
jobs: |
||||
|
merge-rel-4-0-with-rel-3-3: |
||||
|
runs-on: ubuntu-latest |
||||
|
steps: |
||||
|
- uses: actions/checkout@v2 |
||||
|
with: |
||||
|
ref: rel-4.0 |
||||
|
- name: Reset promotion branch |
||||
|
run: | |
||||
|
git fetch origin rel-3.3:rel-3.3 |
||||
|
git reset --hard rel-3.3 |
||||
|
- name: Create Pull Request |
||||
|
uses: peter-evans/create-pull-request@v3 |
||||
|
with: |
||||
|
branch: auto-merge/rel-3-3/${{github.run_number}} |
||||
|
title: Merge branch rel-4.0 with rel-3.3 |
||||
|
body: This PR generated automatically to merge rel-4.0 with rel-3.3. 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