4b4e311c14
1. Add auto approve step when adding label to version upgrading PR. 2. Use mssonicbld TOKEN to merge version upgrading PR instead of 'github actions'
23 lines
563 B
YAML
23 lines
563 B
YAML
# This workflow will merge pull requests automatically
|
|
#
|
|
|
|
name: automerge
|
|
on:
|
|
check_suite:
|
|
types:
|
|
- completed
|
|
|
|
jobs:
|
|
automerge:
|
|
if: github.event.check_suite.app.name == 'Azure Pipelines' && github.event.check_suite.conclusion == 'success'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: automerge
|
|
uses: 'pascalgn/automerge-action@v0.13.1'
|
|
env:
|
|
GITHUB_TOKEN: '${{ secrets.TOKEN }}'
|
|
MERGE_LABELS: 'automerge'
|
|
MERGE_METHOD: 'squash'
|
|
MERGE_FILTER_AUTHOR: 'mssonicbld'
|
|
MERGE_DELETE_BRANCH: true
|