This repository was archived by the owner on Nov 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
103 lines (101 loc) · 3.9 KB
/
run-slash-commands.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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
name: Run Testing Tool Commands
on:
issue_comment:
types: [created]
jobs:
setParams:
# Only allow slash commands on pull request (not on issues)
if: ${{ github.event.issue.pull_request }}
runs-on: ubuntu-latest
outputs:
repo: ${{ steps.getref.outputs.repo }}
ref: ${{ steps.getref.outputs.ref }}
comment-id: ${{ steps.comment-info.outputs.comment-id }}
command: ${{ steps.regex.outputs.first_match }}
steps:
- name: Get PR repo and ref
id: getref
run: |
pr_info="$(curl ${{ github.event.issue.pull_request.url }})"
echo ::set-output name=ref::"$(echo $pr_info | jq -r '.head.ref')"
echo ::set-output name=repo::"$(echo $pr_info | jq -r '.head.repo.full_name')"
- name: Get comment id
id: comment-info
run: |
echo ::set-output name=comment-id::"${{ github.event.comment.id }}"
- name: Get command
id: regex
uses: AsasInnab/regex-action@v1
with:
regex_pattern: "^/[a-zA-Z0-9_/-]+"
regex_flags: "i"
search_string: ${{ github.event.comment.body }}
slashCommandDispatch:
if: |
needs.setParams.outputs.command == '/help-full' ||
needs.setParams.outputs.command == '/list-scenarios' ||
needs.setParams.outputs.command == '/run-scenario' ||
needs.setParams.outputs.command == '/run-scenario-local' ||
needs.setParams.outputs.command == '/help'
runs-on: ubuntu-latest
needs: setParams
steps:
- name: Update comment for processing
uses: peter-evans/create-or-update-comment@v1
with:
comment-id: ${{ needs.setParams.outputs.comment-id }}
reactions: eyes, rocket
- name: Checkout Testing Tool
uses: actions/checkout@v2
with:
repository: ${{ needs.setParams.outputs.repo }}
ref: ${{ needs.setParams.outputs.ref }}
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Build with Gradle
uses: gradle/gradle-build-action@67421db6bd0bf253fb4bd25b31ebb98943c375e1
with:
arguments: build
- name: Build application
run: ./gradlew clean build
shell: bash
- name: Get application version
id: get-version
run: echo ::set-output name=version::"$(eval ./gradlew getImageVersion)"
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Change wrapper permissions
run: |
chmod +x ./.github/scripts/run_docker_with_params.sh
mkdir secrets
mkdir result
- name: Connect to secret manager
uses: jsdaniell/[email protected]
with:
name: "/secrets/service_account_credentials.json"
json: ${{ secrets.GOOGLE_SERVICE_ACCOUNT_CREDENTIALS }}
- name: Run docker container with params
run: ./.github/scripts/run_docker_with_params.sh '${{ github.event.comment.body }}' '${{ steps.get-version.outputs.version }}'
- name: Read file with results
id: read_file
uses: andstor/file-reader-action@v1
with:
path: "result/log"
- name: Add Success Comment
if: needs.setParams.outputs.comment-id && success()
uses: peter-evans/create-or-update-comment@v1
with:
comment-id: ${{ needs.setParams.outputs.comment-id }}
body: |
> :white_check_mark: https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}
${{ steps.read_file.outputs.contents }}
- name: Add Failure Comment
if: needs.setParams.outputs.comment-id && failure()
uses: peter-evans/create-or-update-comment@v1
with:
comment-id: ${{ needs.setParams.outputs.comment-id }}
body: |
> :x: https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}