2020-02-16 01:31:03 +00:00
|
|
|
name: Automatic Rebase
|
|
|
|
# https://github.com/marketplace/actions/automatic-rebase
|
|
|
|
|
2020-05-02 10:47:31 +00:00
|
|
|
on:
|
|
|
|
issue_comment:
|
|
|
|
types: [created]
|
2020-03-17 00:50:36 +00:00
|
|
|
|
2020-02-16 01:31:03 +00:00
|
|
|
jobs:
|
|
|
|
rebase:
|
|
|
|
name: Rebase
|
|
|
|
if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '/rebase')
|
2020-06-27 20:25:33 +00:00
|
|
|
runs-on: ubuntu-20.04
|
2020-02-16 01:31:03 +00:00
|
|
|
steps:
|
2020-04-26 20:10:58 +00:00
|
|
|
- uses: actions/checkout@v2
|
2020-02-16 01:31:03 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
- name: Automatic Rebase
|
|
|
|
uses: cirrus-actions/rebase@1.2
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|