-
Notifications
You must be signed in to change notification settings - Fork 3
39 lines (32 loc) · 1.33 KB
/
rebase.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
33
34
35
36
37
38
39
# This file was added by Pulumi and should not be edited manually. To edit the contents of this file, please go
# to the github-management project in moneymeets-pulumi and call `pulumi up` after changing the template file.
name: Rebase
on:
issue_comment:
types: [ created ]
jobs:
rebase:
# https://docs.github.com/en/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#issue_comment
if: github.event.issue.pull_request && github.event.comment.body == '/rebase'
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: read
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
# https://docs.github.com/en/actions/reference/events-that-trigger-workflows#triggering-new-workflows-using-a-personal-access-token
ssh-key: '${{ secrets.WORKFLOW_DEPLOY_KEY }}'
show-progress: false
- name: Checkout PR
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh pr checkout ${{ github.event.issue.number }}
- name: Rebase and push
run: |
git config user.name 'Sir Mergealot'
git config user.email '[email protected]'
GIT_SEQUENCE_EDITOR=true git rebase --interactive --autosquash origin/master
git push -u origin HEAD --force-with-lease