Merge pull request #13061 from RasaHQ/INFRA-1126 #20104
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Automatic PR Merger | |
| on: | |
| push: {} # update PR when base branch is updated | |
| jobs: | |
| # thats's all. single step is needed - if PR is mergeable according to | |
| # branch protection rules it will be merged automatically | |
| mergepal: | |
| runs-on: ubuntu-22.04 | |
| if: github.repository == 'RasaHQ/rasa' | |
| steps: | |
| - uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c | |
| - uses: rasahq/update-pr-branch@f7012036a6d5659cfbc37f180716963511e81f95 | |
| with: | |
| token: ${{ secrets.UPDATE_BRANCH_PAT }} | |
| # required parameter by original action - | |
| # check is already done through protected branches so not needed for us | |
| required_approval_count: 0 | |
| # update branch despite failing check runs | |
| require_passed_checks: false |