Skip to content
This repository was archived by the owner on Apr 18, 2024. It is now read-only.

Commit 0d73070

Browse files
ci: PLATE-775: ChatOps: Instant Workflow Run link + reaction token (#284)
1 parent 4b3dc54 commit 0d73070

File tree

3 files changed

+29
-18
lines changed

3 files changed

+29
-18
lines changed

.github/workflows/git-command.yml

+18-15
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,16 @@ jobs:
1313
runs-on: ubuntu-latest
1414
timeout-minutes: 3
1515
steps:
16-
- name: Dump the client payload context
17-
env:
18-
PAYLOAD_CONTEXT: ${{ toJson(github.event.client_payload) }}
19-
run: echo "$PAYLOAD_CONTEXT"
16+
- uses: hmarr/[email protected]
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 }})
2026
2127
- name: Checkout on chat command
2228
uses: actions/checkout@v4
@@ -27,15 +33,20 @@ jobs:
2733
submodules: 'recursive'
2834
fetch-depth: 0
2935

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+
3043
- name: Check for merge conflict
3144
id: check-conflict
3245
env:
3346
SLASH_COMMAND_ARG_BRANCH: ${{ github.event.client_payload.slash_command.args.unnamed.arg2 }}
3447
shell: bash
3548
run: |
3649
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'
3950
echo "merge_conflict=$(git merge-tree $(git merge-base HEAD origin/$SLASH_COMMAND_ARG_BRANCH) origin/$SLASH_COMMAND_ARG_BRANCH HEAD | grep '<<')" >> $GITHUB_OUTPUT
4051
4152
- name: Add reaction to command comment on merge conflict
@@ -46,9 +57,7 @@ jobs:
4657
repository: ${{ github.event.client_payload.github.payload.repository.full_name }}
4758
comment-id: ${{ github.event.client_payload.github.payload.comment.id }}
4859
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.
5261
reactions: "-1"
5362

5463
- name: Merge branch into current branch
@@ -79,8 +88,6 @@ jobs:
7988
comment-id: ${{ github.event.client_payload.github.payload.comment.id }}
8089
body: |
8190
> Already up-to-date. Nothing to commit.
82-
>
83-
> [Workflow run](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})
8491
reactions: "confused"
8592

8693
- name: Add reaction to command comment on success
@@ -93,8 +100,6 @@ jobs:
93100
body: |
94101
> Successfully pushed new changes:
95102
> ${{ 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 }})
98103
reactions: "+1"
99104

100105
- name: Add reaction to command comment on failure
@@ -106,8 +111,6 @@ jobs:
106111
comment-id: ${{ github.event.client_payload.github.payload.comment.id }}
107112
body: |
108113
> **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 }})
111114
reactions: "-1"
112115

113116
help:

.github/workflows/jira-command.yml

+9-3
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,15 @@ jobs:
1515
steps:
1616
- uses: hmarr/[email protected]
1717

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 }})
26+
1827
- name: Check user's membership
1928
uses: actions/github-script@v7
2029
id: check-membership
@@ -62,8 +71,6 @@ jobs:
6271
comment-id: ${{ github.event.client_payload.github.payload.comment.id }}
6372
body: |
6473
> Jira issue [${{ steps.jira-create-issue.outputs.key }}](${{ steps.jira-create-issue.outputs.link }}) is created
65-
>
66-
> [Workflow run](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})
6774
reactions: "+1"
6875

6976
- name: Add reaction to command comment on failure
@@ -76,7 +83,6 @@ jobs:
7683
body: |
7784
> **Error**: failed to execute "${{ github.event.client_payload.slash_command.args.unnamed.arg1 }}" command
7885
> ${{ steps.check-membership.outputs.error }}
79-
> [Workflow run](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})
8086
reactions: "-1"
8187

8288
help:

.github/workflows/slash-command-dispatch.yml

+2
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ jobs:
5454
uses: peter-evans/slash-command-dispatch@v3
5555
with:
5656
token: ${{ secrets.GIT_PAT }}
57+
reaction-token: ${{ secrets.GIT_PAT }}
5758
issue-type: "issue"
5859
reactions: true
5960
commands: ${{ env.issue_commands_list }}
@@ -64,6 +65,7 @@ jobs:
6465
uses: peter-evans/slash-command-dispatch@v3
6566
with:
6667
token: ${{ secrets.GIT_PAT }}
68+
reaction-token: ${{ secrets.GIT_PAT }}
6769
issue-type: "pull-request"
6870
reactions: true
6971
commands: ${{ env.commands_list }}

0 commit comments

Comments
 (0)