-
Notifications
You must be signed in to change notification settings - Fork 1
83 lines (81 loc) · 2.58 KB
/
auto-pr-approve-merge.yaml
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
name: Auto PR Approve and Merge
on:
pull_request:
branches:
- main
jobs:
auto-approve:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
# if: contains(fromJSON('["dependabot[bot]", "renovate[bot]", "sunggun-bot[bot]"]'), github.actor)
if: contains(fromJSON('["sunggun-bot[bot]"]'), github.actor)
steps:
- id: approve
uses: actions/github-script@v7
with:
result-encoding: string
retries: 3
script: |
github.rest.pulls.createReview({
owner: context.repo.owner,
repo: context.repo.repo,
pull_number: ${{ github.event.number }},
event: "APPROVE",
body: "auto approved"
})
- id: add-label
uses: actions/github-script@v7
with:
result-encoding: string
retries: 3
script: |
github.rest.issues.addLabels({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: ${{ github.event.number }},
labels: ["auto-approved"]
})
auto-merge:
runs-on: ubuntu-latest
needs: auto-approve
permissions:
contents: write
pull-requests: write
# if: contains(fromJSON('["dependabot[bot]", "renovate[bot]", "sunggun-bot[bot]"]'), github.actor)
if: contains(fromJSON('["sunggun-bot[bot]"]'), github.actor)
steps:
# should use PAT to trigger next workflow
# also it PR creator and approver should be different
- id: app-token
uses: actions/create-github-app-token@v1
with:
app-id: ${{ secrets.APP_ID }}
private-key: ${{ secrets.PRIVATE_KEY }}
- id: merge
uses: actions/github-script@v7
with:
result-encoding: string
retries: 3
github-token: ${{ steps.app-token.outputs.token }}
script: |
github.rest.pulls.merge({
owner: context.repo.owner,
repo: context.repo.repo,
pull_number: ${{ github.event.number }},
merge_method: "squash"
})
- id: add-label
uses: actions/github-script@v7
with:
result-encoding: string
retries: 3
github-token: ${{ steps.app-token.outputs.token }}
script: |
github.rest.issues.addLabels({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: ${{ github.event.number }},
labels: ["auto-merged"]
})