Trigger automatic rebase on issue comment (#1695)

* Trigger automatic rebase on issue comment

Instead of `pull_request` event (created, closed, etc.).

Fixes https://github.com/cirrus-actions/rebase/issues/43

* Removed workaround
This commit is contained in:
Fedor Korotkov 2020-05-02 06:47:31 -04:00 committed by GitHub
parent 2950f66983
commit b4b73f92dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 9 deletions

View File

@ -2,7 +2,8 @@ name: Automatic Rebase
# https://github.com/marketplace/actions/automatic-rebase
on:
- pull_request
issue_comment:
types: [created]
jobs:
rebase:
@ -17,10 +18,3 @@ jobs:
uses: cirrus-actions/rebase@1.2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# https://github.community/t5/GitHub-Actions/Workflow-is-failing-if-no-job-can-be-ran-due-to-condition/m-p/38186#M3250
always_job:
name: Always 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."