-
Notifications
You must be signed in to change notification settings - Fork 1
299 lines (241 loc) · 10 KB
/
on_pull_request_test.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
# testing merge on the main branch after a pullrequest approval
name: Merge on Pull request
on:
pull_request_target:
branches: [ main ]
jobs:
# Firts authenticate user based on PR details
validate_request:
runs-on: ubuntu-latest
outputs:
is_valid: ${{ steps.validate.outputs.validation }}
changed_files: ${{ steps.get_changed_files.outputs.all_changed_files }}
output_data: ${{ steps.compile_output.outputs.output_data }}
steps:
# DEBUG ONLY
- name: dump info
run: |
echo ">>> Repo: ${{ github.repository }}"
echo ">>> SrcPath: $GITHUB_WORKSPACE"
echo ">>> Pull request number: ${{ github.event.pull_request.number }}"
echo ">>> Git hub actor: ${{ github.actor }}"
echo ">>> Branch name is $(echo ${{github.ref}} | sed 's/refs\/heads\///')"
echo ">>> Branch commit is ${{ github.event.pull_request.merge_commit_sha }}"
echo ">>> Branch head is ${{ github.event.pull_request.head.sha }}"
echo ">>> PR_URL is ${{ github.event.pull_request.html_url }}"
# Checkout the forecast repo
# ---------------------------
# - name: checkout repo
# uses: actions/checkout@v3
# with:
# token: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout code
uses: actions/checkout@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
# ref: "${{ github.event.pull_request.merge_commit_sha }}"
ref: ${{ github.event.pull_request.head.sha }}
# Checkout the python tools repo
# used to authenticate and validate the PR
# -------------------------------------------
- name: checkout python tools repo
uses: actions/checkout@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
repository: 'Testing-Forecast-Actions/Testing-Tools'
ref: 'main'
path: tools
# Collect details about the pull request
# ----------------------------------------
- name: Collect PR details
id: collect_details
run: |
echo "gh_actor=${{ github.actor }}"
echo "pr_number=${{ github.event.pull_request.number }}" >> $GITHUB_OUTPUT
# Get changes from pull request
# --------------------------------
- name: Get changes
id: get_changed_files
uses: tj-actions/changed-files@v36
# DEBUG ONLY
- name: List all changed files
run: |
for file in ${{ steps.get_changed_files.outputs.all_changed_files }}; do
echo "$file was changed"
done
# Authenticate the pull_request
# -------------------------------
- name: Execute Authentication script
id: authenticate
env:
calling_actor: ${{ github.actor }}
changed_files: ${{ steps.get_changed_files.outputs.all_changed_files }}
# local_test_var: "MyLocalValue"
# calling_actor: ${{ steps.collect_details.outputs.gh_actor }}
# changed_files: ${{ steps.get_changed_files.outputs.all_changed_files }}
run: python ./tools/.github/scripts/request_authentication/authenticate_request.py
# DEBUG ONLY
- name: Trace execution
run: |
echo "authentication result: ${{ steps.authenticate.outputs.authentication }}"
# If authenticated proceed with validation
# -------------------------------------------
- name: Execute Validation script
id: validate
env:
changed_files: ${{ steps.get_changed_files.outputs.all_changed_files }}
run: |
if [[ ${{ steps.authenticate.outputs.authentication == 'true' }} ]]; then
python ./tools/.github/scripts/forecast_validation/validate.py
else
echo "validation=false" >> $GITHUB_OUTPUT
fi
- name: Prepare Job Output Data
id: compile_output
env:
changed_files: ${{ steps.get_changed_files.outputs.all_changed_files }}
run: |
import os
import json
env_file = os.getenv('GITHUB_OUTPUT')
to_validate = os.getenv("changed_files")
# Get a list of forecast files
fforecasts = to_validate.split(" ")
# List should not be empty
if not fforecasts:
raise Exception(f"Empty commit")
# prepare the output data collection
out_data = {}
out_data['team'] = os.path.basename(os.path.split(fforecasts[0])[0]).split('_')[0]
out_data['models'] = []
for fforecast in fforecasts :
#get the model name from path
model = tuple(os.path.basename(os.path.split(fforecast)[0]).split('_'))[1]
model_entry = next((item for item in out_data['models'] if item["model"] == model), None)
if model_entry is None:
out_data['models'].append({"model" : model, "changes": [fforecast]})
else:
model_entry["changes"].append(fforecast)
out_data_s = json.dumps(out_data)
print(f'::set-output name=output_data::{out_data_s}')
shell: python
# -------------------------------------------
# SUCCESS
# -------------------------------------------
on_successful_validation:
runs-on: ubuntu-latest
needs: validate_request
if: ${{ needs.validate_request.outputs.is_valid == 'true'}}
steps:
# DUMP INPUT
- name: Dump for Debug
run: |
echo ">>> SUCCESS - output data: ${{ needs.validate_request.outputs.output_data }}"
# Checkout the forecast repo
# ---------------------------
# - name: checkout repo
# uses: actions/checkout@v3
# with:
# token: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout code
uses: actions/checkout@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
ref: "${{ github.event.pull_request.merge_commit_sha }}"
# Checkout the python tools repo
# used to authenticate and validate the PR
# -------------------------------------------
- name: checkout python tools repo
uses: actions/checkout@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
repository: 'Testing-Forecast-Actions/Testing-Tools'
ref: 'main'
path: tools
# Approve pull request
# ---------------------------
- name: Approve Pull Request
uses: juliangruber/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
number: ${{ github.event.pull_request.number }}
# Eventually comment on it
- name: Comment PR
uses: thollander/actions-comment-pull-request@v2
with:
message: |
All checks completed successfully ! :wave:
pr_number: ${{ github.event.pull_request.number }}
# Merge changes
# ---------------------------
- uses: de-vri-es/setup-git-credentials@v2
with:
credentials: ${{ secrets.WF_PR_CREDENTIALS }}
- name: Merge the pull request
id: merge_pr
run: |
echo ">>> USER: secrets.WF_PR_USER"
echo ">>> PAT: ${{ secrets.WF_PR_PAT }} "
echo ">>> PR URL: ${{ github.event.pull_request.html_url }}"
export GIT_USER=${{secrets.WF_PR_USER}}
git config --global user.name $GIT_USER
git config --global user.email "[email protected]"
gh pr merge --auto --squash $PR_URL
echo "status=true" >> $GITHUB_OUTPUT
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GH_TOKEN: ${{ secrets.WF_PR_PAT }}
#TEMP REMOVE
# Store changes
# -------------------------
- name: Store Changes
if: ${{ steps.merge_pr.outputs.status == 'true' }}
env:
data: ${{ needs.validate_request.outputs.output_data }}
run: |
echo ">>> Store changes to json"
python ./tools/.github/scripts/utils/store_changes.py
# # Activate client view
# # ---------------------------
# # WEBHOOK
# - name: Invoke deployment hook
# if: ${{ steps.merge_pr.outputs.status == 'true' }}
# #uses: distributhor/[email protected]
# env:
# webhook_url: ${{ secrets.WEB_HOOK_URL_DEV }}
# # webhook_url: ${{ secrets.WEBHOOK_URL }}
# # webhook_url: ${{ secrets.WEB_HOOK_URL_PRODUCTION }}
# webhook_secret: ${{ secrets.WEB_HOOK_SECRET }}
# #data: '{ "changes": ${{ toJSON(needs.validate_request.outputs.changed_files) }}, "actor" : ${{ toJSON(github.actor) }} }'
# data: ${{ needs.validate_request.outputs.output_data }}
# run: |
# echo ">>> Calling custom webhook"
# pip install requests
# echo ">>> Pip installed"
# python ./tools/.github/scripts/utils/workflow_webhook.py
# -------------------------------------------
# FAILED
# -------------------------------------------
on_validation_failed:
runs-on: ubuntu-latest
needs: validate_request
if: ${{ needs.validate_request.outputs.is_valid == 'false'}}
steps:
# DEBUG ONLY
- name: DEBUG - DUMP INFO
env:
changed-files: ${{ needs.validate_request.outputs.changed_files }}
run: |
echo ">>> FAILED JOB "
echo ">>> Changes: $changed-files"
echo ">>> Repo: ${{ github.repository }}"
echo ">>> SrcPath: $GITHUB_WORKSPACE"
echo ">>> Pull request number: ${{ github.event.pull_request.number }}"
echo ">>> Git hub actor: ${{ github.actor }}"
# Inform the user about what went wrong
- name: Comment PR
uses: thollander/actions-comment-pull-request@v2
with:
message: |
Something went wrong. PR is rejected
pr_number: ${{ github.event.pull_request.number }}