Update dependency NUnit3TestAdapter to 6.1.0 #1005
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: Auto-merge AWSSDK dependency updates | |
| on: | |
| pull_request: | |
| types: [ opened, synchronize ] | |
| permissions: | |
| pull-requests: write | |
| contents: write | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| renovate: | |
| runs-on: ubuntu-latest | |
| if: github.event.pull_request.user.login == 'dependencyupdates[bot]' && contains(github.event.pull_request.title, 'AWSSDK') | |
| steps: | |
| - name: Approve PR | |
| run: gh pr review --approve "$PR_URL" | |
| env: | |
| PR_URL: ${{github.event.pull_request.html_url}} | |
| GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
| - name: Enable auto-merge | |
| run: gh pr merge --auto --squash "$PR_URL" | |
| env: | |
| PR_URL: ${{github.event.pull_request.html_url}} | |
| GH_TOKEN: ${{secrets.GITHUB_TOKEN}} |