fix: Make BecauseResourcesTimeout fatal to fix freestyle lock timeout… #18
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: Rebase open PRs | |
| on: | |
| push: | |
| branches: | |
| - master | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| rebase-prs: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: mPokornyETM/rebase-open-prs-action@v1 | |
| env: | |
| # Use PAT to trigger subsequent workflows (security scan, etc.) | |
| # Falls back to github.token if GH_TOKEN secret is not set | |
| GH_TOKEN: ${{ secrets.GH_TOKEN || github.token }} | |
| with: | |
| github-token: ${{ secrets.GH_TOKEN || github.token }} |