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:
|
2024-04-22 20:55:26 +08:00
|
|
|
- uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
|
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 }}
|