2021-02-08 09:13:04 +08:00
|
|
|
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:
|
2023-09-04 21:40:13 +08:00
|
|
|
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
|
2021-02-08 09:13:04 +08:00
|
|
|
with:
|
|
|
|
token: ${{ secrets.PAT_TOKEN }}
|
|
|
|
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
|
|
|
|
- name: Automatic Rebase
|
2022-12-13 22:39:22 +08:00
|
|
|
uses: cirrus-actions/rebase@1.8
|
2021-02-08 09:13:04 +08:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }}
|