mirror of
https://github.com/tj-actions/branch-names.git
synced 2024-11-24 01:33:50 +08:00
19 lines
582 B
YAML
19 lines
582 B
YAML
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@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
|
|
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.8
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }}
|