mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-15 04:39:58 +00:00
22 lines
535 B
YAML
22 lines
535 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 }}
|
|
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' |