Restore toolchain env sources so CI can find GraalVM #3
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: Update PR branches | |
| on: | |
| push: | |
| branches: [ 'main' ] | |
| schedule: | |
| # Run every hour to catch stuck PRs | |
| - cron: '0 * * * *' | |
| jobs: | |
| update: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: adRise/update-pr-branch@e96e796f4ab23ab388016fdaed7092de99bd71cf # v0.11.1 | |
| with: | |
| token: ${{ secrets.BOT_PAT }} | |
| base: 'main' | |
| required_approval_count: 1 | |
| require_passed_checks: true |