This repository was archived by the owner on Nov 18, 2025. It is now read-only.
chore(deps): update dependency eslint-plugin-github to v6 #12035
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: Automatic Rebase | |
| on: | |
| push: | |
| branches-ignore: | |
| # Ignore branches automatically created by github-rebase | |
| - rebase-pull-request** | |
| - cherry-pick-rebase-pull-request** | |
| pull_request: | |
| types: | |
| - labeled | |
| jobs: | |
| autorebase: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/create-github-app-token@v2 | |
| id: generate_token | |
| with: | |
| app-id: ${{ secrets.APP_ID }} | |
| private-key: ${{ secrets.APP_PRIVATE_KEY }} | |
| - uses: Label305/[email protected] | |
| with: | |
| github_token: ${{ steps.generate_token.outputs.token }} |