Mahmut Gundogdu
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
7 additions and
7 deletions
-
.github/workflows/auto-pr.yml
|
|
|
@ -1,8 +1,8 @@ |
|
|
|
name: Merge branch dev with rel-7.2 |
|
|
|
name: Merge branch dev with rel-7.3 |
|
|
|
on: |
|
|
|
push: |
|
|
|
branches: |
|
|
|
- rel-7.2 |
|
|
|
- rel-7.3 |
|
|
|
permissions: |
|
|
|
contents: read |
|
|
|
|
|
|
|
@ -18,13 +18,13 @@ jobs: |
|
|
|
ref: dev |
|
|
|
- name: Reset promotion branch |
|
|
|
run: | |
|
|
|
git fetch origin rel-7.2:rel-7.2 |
|
|
|
git reset --hard rel-7.2 |
|
|
|
git fetch origin rel-7.3:rel-7.3 |
|
|
|
git reset --hard rel-7.3 |
|
|
|
- name: Create Pull Request |
|
|
|
uses: peter-evans/create-pull-request@v3 |
|
|
|
with: |
|
|
|
branch: auto-merge/rel-7-2/${{github.run_number}} |
|
|
|
title: Merge branch dev with rel-7.2 |
|
|
|
body: This PR generated automatically to merge dev with rel-7.2. Please review the changed files before merging to prevent any errors that may occur. |
|
|
|
branch: auto-merge/rel-7-3/${{github.run_number}} |
|
|
|
title: Merge branch dev with rel-7.3 |
|
|
|
body: This PR generated automatically to merge dev with rel-7.3. Please review the changed files before merging to prevent any errors that may occur. |
|
|
|
reviewers: ${{github.actor}} |
|
|
|
token: ${{ github.token }} |
|
|
|
|