mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 19:19:57 +08:00
7df91fd14b
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
26 lines
679 B
YAML
26 lines
679 B
YAML
name: Automatic Rebase
|
|
|
|
on:
|
|
issue_comment:
|
|
types: [created]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
rebase:
|
|
permissions:
|
|
contents: write # for cirrus-actions/rebase to push code to rebase
|
|
pull-requests: read # for cirrus-actions/rebase to get info about PR
|
|
name: Rebase
|
|
if: github.event.issue.pull_request != '' && (contains(github.event.comment.body, '/rebase') || contains(github.event.comment.body, '\rebase'))
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Automatic Rebase
|
|
uses: cirrus-actions/rebase@1.8
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|