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:
parent
2950f66983
commit
b4b73f92dd
|
@ -2,7 +2,8 @@ name: Automatic Rebase
|
||||||
# https://github.com/marketplace/actions/automatic-rebase
|
# https://github.com/marketplace/actions/automatic-rebase
|
||||||
|
|
||||||
on:
|
on:
|
||||||
- pull_request
|
issue_comment:
|
||||||
|
types: [created]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
rebase:
|
rebase:
|
||||||
|
@ -17,10 +18,3 @@ jobs:
|
||||||
uses: cirrus-actions/rebase@1.2
|
uses: cirrus-actions/rebase@1.2
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
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."
|
|
||||||
|
|
Loading…
Reference in New Issue