File tree 1 file changed +17
-7
lines changed
1 file changed +17
-7
lines changed Original file line number Diff line number Diff line change 1
1
name : ci
2
2
3
- on : [push, pull_request]
3
+ on :
4
+ pull_request :
5
+ types : [labeled, synchronize]
6
+ push :
7
+ branches : [master]
4
8
5
9
jobs :
6
10
qa :
@@ -35,11 +39,17 @@ jobs:
35
39
contents : write
36
40
pull-requests : write
37
41
steps :
42
+ - name : Checkout repository
43
+ uses : actions/checkout@v3
44
+
38
45
- name : Merge pull request
39
- uses : pascalgn/automerge-action@v0.16.4
46
+ run : |
47
+ PR_NUMBER=$(basename "$PR_URL")
48
+ PR_TITLE=$(gh pr view "$PR_NUMBER" --json title -q ".title")
49
+ PR_BODY=$(gh pr view "$PR_NUMBER" --json body -q ".body")
50
+ COMMIT_MESSAGE="${PR_TITLE} (#${PR_NUMBER})"
51
+
52
+ gh pr merge "$PR_URL" --auto --squash --subject "$COMMIT_MESSAGE" --body "$PR_BODY"
40
53
env :
41
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
42
- MERGE_LABELS : " automerge"
43
- MERGE_METHOD : " squash"
44
- MERGE_COMMIT_MESSAGE : " pull-request-title-and-description"
45
- MERGE_DELETE_BRANCH : " true"
54
+ PR_URL : ${{ github.event.pull_request.html_url }}
55
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments