Create rebase.yml

This commit is contained in:
Tonye Jack 2021-02-07 20:13:04 -05:00 committed by GitHub
parent 7b704c18dc
commit 2f4cdf3470
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

18
.github/workflows/rebase.yml vendored Normal file
View File

@ -0,0 +1,18 @@
name: Automatic 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:
- uses: actions/checkout@v2
with:
token: ${{ secrets.PAT_TOKEN }}
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
- name: Automatic Rebase
uses: cirrus-actions/rebase@1.4
env:
GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }}