Bump shogo82148/actions-goveralls from 1.6.0 to 1.10.0 #841
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
| # https://github.com/marketplace/actions/automatic-rebase | |
| # comment /rebase to PR, auto help rebase all commit for the PR | |
| name: Auto Rebase | |
| on: | |
| issue_comment: | |
| types: [created] | |
| jobs: | |
| rebase: | |
| name: Rebase | |
| if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '/rebase') | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout the latest code | |
| uses: actions/checkout@v2 | |
| with: | |
| # otherwise, you will fail to push refs to dest repo | |
| fetch-depth: 0 | |
| - name: Automatic Rebase | |
| uses: cirrus-actions/[email protected] | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |