mirror of
https://github.com/famedly/ansible-collection-matrix
synced 2025-03-02 13:47:11 +00:00
chore: add ff-merge workflow
This commit is contained in:
parent
59b0917763
commit
7195a7d448
1 changed files with 22 additions and 0 deletions
22
.github/workflows/ff-merge.yml
vendored
Normal file
22
.github/workflows/ff-merge.yml
vendored
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
name: fast-forward
|
||||||
|
on:
|
||||||
|
issue_comment:
|
||||||
|
types: [created, edited]
|
||||||
|
jobs:
|
||||||
|
fast-forward:
|
||||||
|
# Only run if the comment contains the /fast-forward command.
|
||||||
|
if: ${{ contains(github.event.comment.body, '/fast-forward')
|
||||||
|
&& github.event.issue.pull_request }}
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
pull-requests: write
|
||||||
|
issues: write
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Fast forwarding
|
||||||
|
uses: sequoia-pgp/fast-forward@v1
|
||||||
|
with:
|
||||||
|
merge: true
|
||||||
|
comment: on-error
|
Loading…
Add table
Reference in a new issue