-
Notifications
You must be signed in to change notification settings - Fork 9
32 lines (29 loc) · 1.02 KB
/
fast-forward.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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: Configure git
run: |
git config --global --add url."https://wc-cicd:${{ secrets.GITHUB_TOKEN }}@github.com/worldcoin/".insteadOf "[email protected]:worldcoin/"
- name: Fast forwarding
uses: sequoia-pgp/fast-forward@v1
with:
merge: true
debug: 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
github_token: ${{ secrets.GITHUB_TOKEN }}