mirror of
https://github.com/dw-0/kiauh.git
synced 2025-12-11 17:44:28 +05:00
29 lines
823 B
YAML
29 lines
823 B
YAML
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 &&
|
|
github.base_ref == 'develop'
|
|
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
|
|
# To reduce the workflow's verbosity, use 'on-error'
|
|
# to only post a comment when an error occurs, or 'never' to
|
|
# never post a comment. (In all cases the information is
|
|
# still available in the step's summary.)
|
|
comment: on-error
|