1
0
mirror of https://github.com/jdan/98.css.git synced 2026-05-05 06:01:22 +09:00

Create rebase.yml

This commit is contained in:
Jordan Scales
2020-05-02 09:22:54 -04:00
committed by GitHub
parent 58ae88c0d6
commit 8a6a64ad02

17
.github/workflows/rebase.yml vendored Normal file
View File

@@ -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')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
with:
fetch-depth: 0
- name: Automatic Rebase
uses: cirrus-actions/rebase@1.2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}