Add RC logic to auto merge workflow
This commit is contained in:
parent
2b864a771f
commit
91caa02b02
|
@ -9,7 +9,7 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Auto Merge PR
|
- name: Auto Merge PR
|
||||||
if: contains(${{ github.event.pull_request.base.ref }}, 'development')
|
if: contains(${{ github.event.pull_request.base.ref }}, 'development') || contains(${{ github.event.pull_request.base.ref }}, 'RC')
|
||||||
run: |
|
run: |
|
||||||
echo ${{ secrets.PUSH_TOKEN }} >> auth.txt
|
echo ${{ secrets.PUSH_TOKEN }} >> auth.txt
|
||||||
gh auth login --with-token < auth.txt
|
gh auth login --with-token < auth.txt
|
||||||
|
|
Loading…
Reference in New Issue