Implement investment limits #647
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 bot PRs to bump package versions | |
| on: | |
| pull_request: | |
| permissions: | |
| contents: write | |
| pull-requests: write # Needed if in a private repository | |
| jobs: | |
| auto-merge: | |
| runs-on: ubuntu-latest | |
| if: ${{ github.event.pull_request.user.login == 'dependabot[bot]' || github.event.pull_request.user.login == 'pre-commit-ci[bot]' || github.event.pull_request.user.login == 'rse-ci-imperial' }} | |
| steps: | |
| - name: Enable auto-merge for bot PRs | |
| run: | | |
| gh pr review --approve "$PR_URL" | |
| gh pr merge --auto --merge "$PR_URL" | |
| env: | |
| PR_URL: ${{github.event.pull_request.html_url}} | |
| # GitHub provides this variable in the CI env. You don't | |
| # need to add anything to the secrets vault. | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |