Bump tests/drivers-evergreen-tools from 1dcbfe4 to f8ab2a5 (#1891)
#282
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: Merge up | |
| on: | |
| push: | |
| branches: | |
| - "v[0-9]+.[0-9x]+" | |
| env: | |
| GH_TOKEN: ${{ secrets.MERGE_UP_TOKEN }} | |
| jobs: | |
| merge-up: | |
| name: Create merge up pull request | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| id: checkout | |
| uses: actions/checkout@v5 | |
| with: | |
| # fetch-depth 0 is required to fetch all branches, not just the branch being built | |
| fetch-depth: 0 | |
| token: ${{ secrets.MERGE_UP_TOKEN }} | |
| - name: Create pull request | |
| id: create-pull-request | |
| uses: alcaeus/automatic-merge-up-action@1.0.1 | |
| with: | |
| ref: ${{ github.ref_name }} | |
| branchNamePattern: 'v<major>.<minor>' | |
| devBranchNamePattern: 'v<major>.x' | |
| ignoredBranches: ${{ vars.IGNORED_MERGE_UP_BRANCHES }} | |
| enableAutoMerge: true |