ant-design/.github/workflows/rebase.yml

18 lines
432 B
YAML
Raw Normal View History

2020-05-08 13:43:15 +08:00
on:
2019-09-24 07:04:53 +08:00
issue_comment:
types: [created]
2020-05-13 16:05:24 +08:00
name: Automatic Rebase
2019-09-24 07:04:53 +08:00
jobs:
rebase:
name: Rebase
if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '/rebase')
2019-09-24 07:04:53 +08:00
runs-on: ubuntu-latest
steps:
2020-05-13 16:05:24 +08:00
- uses: actions/checkout@master
2020-04-28 17:02:37 +08:00
with:
fetch-depth: 0
- name: Automatic Rebase
2020-05-13 16:05:24 +08:00
uses: cirrus-actions/rebase@1.3
2020-04-28 17:02:37 +08:00
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}