Update rebase.yml

This commit is contained in:
偏右 2020-05-13 16:05:24 +08:00 committed by GitHub
parent b73e84da9b
commit e15be10faf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,20 +1,17 @@
name: Automatic Rebase
# https://github.com/marketplace/actions/automatic-rebase
on: on:
issue_comment: issue_comment:
types: [created] types: [created]
name: Automatic Rebase
jobs: jobs:
rebase: rebase:
name: Rebase name: Rebase
if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '/rebase') if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '/rebase')
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@master
with: with:
fetch-depth: 0 fetch-depth: 0
- name: Automatic Rebase - name: Automatic Rebase
uses: cirrus-actions/rebase@1.2 uses: cirrus-actions/rebase@1.3
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}