@@ -13,10 +13,16 @@ jobs:
13
13
runs-on : ubuntu-latest
14
14
timeout-minutes : 3
15
15
steps :
16
- - name : Dump the client payload context
17
- env :
18
- PAYLOAD_CONTEXT : ${{ toJson(github.event.client_payload) }}
19
- run : echo "$PAYLOAD_CONTEXT"
16
+
17
+
18
+ - name : Add Workflow link to command comment
19
+ uses : peter-evans/create-or-update-comment@v3
20
+ with :
21
+ token : ${{ secrets.GIT_PAT }}
22
+ repository : ${{ github.event.client_payload.github.payload.repository.full_name }}
23
+ comment-id : ${{ github.event.client_payload.github.payload.comment.id }}
24
+ body : |
25
+ > [Workflow run](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})
20
26
21
27
- name : Checkout on chat command
22
28
uses : actions/checkout@v4
@@ -27,15 +33,20 @@ jobs:
27
33
submodules : ' recursive'
28
34
fetch-depth : 0
29
35
36
+ - name : Configure git
37
+ shell : bash
38
+ run : |
39
+ set -xeuo pipefail
40
+ git config --global user.name '${{ github.event.client_payload.github.actor }}'
41
+ git config --global user.email '${{ github.event.client_payload.github.actor }}@users.noreply.github.com'
42
+
30
43
- name : Check for merge conflict
31
44
id : check-conflict
32
45
env :
33
46
SLASH_COMMAND_ARG_BRANCH : ${{ github.event.client_payload.slash_command.args.unnamed.arg2 }}
34
47
shell : bash
35
48
run : |
36
49
set -xeuo pipefail
37
- git config --global user.name '${{ github.event.client_payload.github.actor }}'
38
- git config --global user.email '${{ github.event.client_payload.github.actor }}@users.noreply.github.com'
39
50
echo "merge_conflict=$(git merge-tree $(git merge-base HEAD origin/$SLASH_COMMAND_ARG_BRANCH) origin/$SLASH_COMMAND_ARG_BRANCH HEAD | grep '<<')" >> $GITHUB_OUTPUT
40
51
41
52
- name : Add reaction to command comment on merge conflict
46
57
repository : ${{ github.event.client_payload.github.payload.repository.full_name }}
47
58
comment-id : ${{ github.event.client_payload.github.payload.comment.id }}
48
59
body : |
49
- > **Error**: Merge conflict detected, please resolve it using the git command line.
50
- >
51
- > [Workflow run](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})
60
+ > **Error**: Merge conflict detected, please resolve it using the command line.
52
61
reactions : " -1"
53
62
54
63
- name : Merge branch into current branch
79
88
comment-id : ${{ github.event.client_payload.github.payload.comment.id }}
80
89
body : |
81
90
> Already up-to-date. Nothing to commit.
82
- >
83
- > [Workflow run](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})
84
91
reactions : " confused"
85
92
86
93
- name : Add reaction to command comment on success
93
100
body : |
94
101
> Successfully pushed new changes:
95
102
> ${{ steps.commit_and_push.outputs.last_commit_msg }} (${{ steps.commit_and_push.outputs.last_commit_sha }})
96
- >
97
- > [Workflow run](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})
98
103
reactions : " +1"
99
104
100
105
- name : Add reaction to command comment on failure
@@ -106,8 +111,6 @@ jobs:
106
111
comment-id : ${{ github.event.client_payload.github.payload.comment.id }}
107
112
body : |
108
113
> **Error**: failed to execute "${{ github.event.client_payload.slash_command.args.unnamed.arg1 }}" command
109
- >
110
- > [Workflow run](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})
111
114
reactions : " -1"
112
115
113
116
help :
0 commit comments