Browse Source

ci: create rebase.yml (#29346)

* Create rebase.yml

* Update .github/workflows/rebase.yml
pull/29450/head
xrkffgg 4 years ago
committed by GitHub
parent
commit
7f09d35ed6
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 17
      .github/workflows/rebase.yml

17
.github/workflows/rebase.yml

@ -0,0 +1,17 @@
on:
issue_comment:
types: [created]
name: Automatic Rebase
jobs:
rebase:
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@master
with:
fetch-depth: 0
- name: Automatic Rebase
uses: cirrus-actions/rebase@1.3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Loading…
Cancel
Save