Add detailed debug logging for pull request rebasing process #533
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
| on: | |
| push: | |
| branches-ignore: | |
| # Ignore branches automatically created by github-rebase | |
| - rebase-pull-request** | |
| - cherry-pick-rebase-pull-request** | |
| pull_request: | |
| types: [labeled] | |
| jobs: | |
| auto-rebase: | |
| runs-on: ubuntu-latest | |
| name: Rebase out-of-date pull requests | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install | |
| run: yarn install --frozen-lockfile | |
| - name: Build | |
| run: yarn run build | |
| - name: Run index.ts | |
| uses: ./ # Uses an action in the root directory | |
| with: | |
| github_token: ${{ secrets.REBASE_TOKEN }} |