-
Notifications
You must be signed in to change notification settings - Fork 1
519 lines (455 loc) · 17.2 KB
/
Copy pathpr-lint.yml
File metadata and controls
519 lines (455 loc) · 17.2 KB
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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
--- # Linting of pull requests
# Maintain in repo: funfair-server-template
name: "PR: Lint"
on:
pull_request:
types: [opened, edited, synchronize, reopened, ready_for_review, unlocked]
branches:
- main
permissions:
contents: read
pull-requests: read
concurrency:
group: ${{github.workflow}}-${{github.ref}}
cancel-in-progress: true
env:
HEAD_REF: ${{github.head_ref}}
BASE_REF: ${{github.base_ref}}
jobs:
info:
if: endsWith(github.repository, '-template')
runs-on: [self-hosted, linux, build]
steps:
- name: "Initialise Workspace"
if: runner.environment == 'self-hosted'
shell: bash
run: sudo chown -R "$USER:$USER" "$GITHUB_WORKSPACE"
- name: "Set Active Environment"
shell: bash
run: |
{
echo "ACTIVE_RUNNER_NAME=${{runner.name}}"
echo "ACTIVE_HOSTNAME=$HOSTNAME"
echo "ACTIVE_USER=$USER"
} >> "$GITHUB_ENV"
- name: "Info"
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
with:
script: |
core.info(`Branch: ${process.env.HEAD_REF}`);
core.info(`Base Branch: ${process.env.BASE_REF}`);
core.info(`Repo: ${context.repo.owner}/${context.repo.repo}`);
core.info(`Owner: ${context.repo.owner}`);
await core.summary
.addHeading('Info')
.addTable([
[{data: 'Property', header: true}, {data: 'Value', header: true}],
['Branch', `${process.env.HEAD_REF}`],
['Base Branch', `${process.env.BASE_REF}`],
['Repo', `${context.repo.owner}/${context.repo.repo}`],
['Owner', `${context.repo.owner}`],
])
.write();
# @@required: merge
include-changelog-entry:
if: |-
github.event.pull_request.draft == false &&
!contains(github.event.pull_request.labels.*.name, 'Changelog Not Required')
runs-on: [self-hosted, linux, build]
steps:
- name: "Initialise Workspace"
if: runner.environment == 'self-hosted'
shell: bash
run: sudo chown -R "$USER:$USER" "$GITHUB_WORKSPACE"
- name: "Set Active Environment"
shell: bash
run: |
{
echo "ACTIVE_RUNNER_NAME=${{runner.name}}"
echo "ACTIVE_HOSTNAME=$HOSTNAME"
echo "ACTIVE_USER=$USER"
} >> "$GITHUB_ENV"
- name: "Checkout Source"
if: (github.actor != 'dependabot[bot]' && !endsWith(github.repository , '-template'))
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
clean: true
fetch-depth: 0
- name: "Diff Changes"
if: (github.actor != 'dependabot[bot]' && !endsWith(github.repository , '-template'))
shell: bash
run: |
diff_output=$(git diff --exit-code --no-patch --merge-base "origin/${BASE_REF}" CHANGELOG.md 2>&1) && diff_exit=0 || diff_exit=$?
case "${diff_exit}" in
0|1)
echo "CHANGES=${diff_exit}" >> "$GITHUB_ENV"
;;
*)
echo "::error::git diff against origin/${BASE_REF} failed (exit ${diff_exit}): ${diff_output}"
exit "${diff_exit}"
;;
esac
- name: "Report unchanged"
if: (github.actor != 'dependabot[bot]' && !endsWith(github.repository , '-template')) && env.CHANGES == '0'
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
with:
script: |
core.setFailed('Changelog has not changed')
change-log-entry-is-in-unreleased:
if: github.event.pull_request.draft == false
# As LibGit2Sharp doesn't work on 20.04
runs-on: [self-hosted, linux, build]
steps:
- name: "Initialise Workspace"
if: runner.environment == 'self-hosted'
shell: bash
run: sudo chown -R "$USER:$USER" "$GITHUB_WORKSPACE"
- name: "Set Active Environment"
shell: bash
run: |
{
echo "ACTIVE_RUNNER_NAME=${{runner.name}}"
echo "ACTIVE_HOSTNAME=$HOSTNAME"
echo "ACTIVE_USER=$USER"
} >> "$GITHUB_ENV"
- name: "Checkout Source"
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
clean: true
fetch-depth: 0
- name: "Check Required Secrets"
if: (github.actor != 'dependabot[bot]' && !endsWith(github.repository , '-template'))
uses: ./.github/actions/check-required-secret
with:
secret-name: "SOURCE_PUSH_TOKEN"
secret-value: ${{secrets.SOURCE_PUSH_TOKEN}}
- name: "Install dotnet"
if: (github.actor != 'dependabot[bot]' && !endsWith(github.repository , '-template'))
uses: ./.github/actions/dotnet-install
with:
github-token: ${{secrets.SOURCE_PUSH_TOKEN}}
nuget-public-restore-feed-cache: ${{vars.NUGET_BAGET_CACHE}}
nuget-public-restore-feed: ${{vars.NUGET_PUBLIC_RESTORE_FEED || 'https://api.nuget.org/v3/index.json'}}
nuget-additional-restore-feed-release-cache: ""
nuget-additional-restore-feed-prerelease-cache: ""
nuget-additional-restore-feed-release: ""
nuget-additional-restore-feed-prerelease: ""
- name: "Install Changelog tool"
if: (github.actor != 'dependabot[bot]' && !endsWith(github.repository , '-template'))
uses: ./.github/actions/dotnet-tool
with:
tool-name: "Credfeto.ChangeLog.Cmd"
tool-version: "latest"
- name: "Check Changelog"
if: (github.actor != 'dependabot[bot]' && !endsWith(github.repository , '-template'))
uses: ./.github/actions/dotnet-tool-run
with:
working-directory: ${{github.workspace}}
tool-name: "changelog"
tool-arguments: "--changelog \"${{github.workspace}}/CHANGELOG.md\" --check-insert \"origin/${{github.base_ref}}\""
# @@required: merge
does-not-contain-secrets:
if: github.event.pull_request.draft == false
runs-on: [self-hosted, linux, build]
steps:
- name: "Initialise Workspace"
if: runner.environment == 'self-hosted'
shell: bash
run: sudo chown -R "$USER:$USER" "$GITHUB_WORKSPACE"
- name: "Set Active Environment"
shell: bash
run: |
{
echo "ACTIVE_RUNNER_NAME=${{runner.name}}"
echo "ACTIVE_HOSTNAME=$HOSTNAME"
echo "ACTIVE_USER=$USER"
} >> "$GITHUB_ENV"
- name: "Checkout Source"
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
clean: true
fetch-depth: 0
- name: "Check for leaks"
uses: trufflesecurity/trufflehog@bcfcf73aaf4759d4dadc2783177c245a02792318 # v3.97.0
id: trufflehog
with:
path: "${{ github.workspace }}"
base: "${{ github.event.repository.default_branch }}"
head: HEAD
extra_args: --debug --only-verified
- name: "Scan Results Status"
if: steps.trufflehog.outcome == 'failure'
run: exit 1
# @@required: merge
has-no-merge-conflicts:
if: github.event.pull_request.draft == false
runs-on: [self-hosted, linux, build]
steps:
- name: "Initialise Workspace"
if: runner.environment == 'self-hosted'
shell: bash
run: sudo chown -R "$USER:$USER" "$GITHUB_WORKSPACE"
- name: "Set Active Environment"
shell: bash
run: |
{
echo "ACTIVE_RUNNER_NAME=${{runner.name}}"
echo "ACTIVE_HOSTNAME=$HOSTNAME"
echo "ACTIVE_USER=$USER"
} >> "$GITHUB_ENV"
- name: "Checkout Source"
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
clean: true
fetch-depth: 1
- name: "Check for merge conflicts"
uses: ./.github/actions/check-no-merge-conflicts
# @@required: merge
has-no-file-or-folder-case-sensitivity-issues:
if: github.event.pull_request.draft == false
runs-on: [self-hosted, linux, build]
steps:
- name: "Initialise Workspace"
if: runner.environment == 'self-hosted'
shell: bash
run: sudo chown -R "$USER:$USER" "$GITHUB_WORKSPACE"
- name: "Set Active Environment"
shell: bash
run: |
{
echo "ACTIVE_RUNNER_NAME=${{runner.name}}"
echo "ACTIVE_HOSTNAME=$HOSTNAME"
echo "ACTIVE_USER=$USER"
} >> "$GITHUB_ENV"
- name: "Checkout Source"
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
clean: true
fetch-depth: 1
- name: "Check for case conflicts"
uses: ./.github/actions/check-no-case-sensitivity-conflicts
# @@required: merge
no-ignored-files:
if: github.event.pull_request.draft == false
runs-on: [self-hosted, linux, build]
steps:
- name: "Initialise Workspace"
if: runner.environment == 'self-hosted'
shell: bash
run: sudo chown -R "$USER:$USER" "$GITHUB_WORKSPACE"
- name: "Set Active Environment"
shell: bash
run: |
{
echo "ACTIVE_RUNNER_NAME=${{runner.name}}"
echo "ACTIVE_HOSTNAME=$HOSTNAME"
echo "ACTIVE_USER=$USER"
} >> "$GITHUB_ENV"
- name: "Checkout Source"
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
clean: true
fetch-depth: 1
- name: "Check for ignored files"
uses: ./.github/actions/check-no-ignored-files
# @@required: merge
dependency-review:
# Check that there are no dependencies with security problems in the PR
if: github.event.pull_request.draft == false
runs-on: [self-hosted, linux, build]
steps:
- name: "Initialise Workspace"
if: runner.environment == 'self-hosted'
shell: bash
run: sudo chown -R "$USER:$USER" "$GITHUB_WORKSPACE"
- name: "Set Active Environment"
shell: bash
run: |
{
echo "ACTIVE_RUNNER_NAME=${{runner.name}}"
echo "ACTIVE_HOSTNAME=$HOSTNAME"
echo "ACTIVE_USER=$USER"
} >> "$GITHUB_ENV"
- name: "Checkout Source"
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
clean: true
fetch-depth: 1
- name: "Check repo visibility"
uses: ./.github/actions/check-repo-visibility
id: visibility
- name: "Dependency Review"
if: steps.visibility.outputs.is_public == 'true'
uses: actions/dependency-review-action@a1d282b36b6f3519aa1f3fc636f609c47dddb294 # v5.0.0
no-merge-commits:
# Check that there are no merge commits in the PR
if: github.event.pull_request.draft == false
runs-on: [self-hosted, linux, build]
permissions:
contents: read
pull-requests: read
steps:
- name: "Initialise Workspace"
if: runner.environment == 'self-hosted'
shell: bash
run: sudo chown -R "$USER:$USER" "$GITHUB_WORKSPACE"
- name: "Set Active Environment"
shell: bash
run: |
{
echo "ACTIVE_RUNNER_NAME=${{runner.name}}"
echo "ACTIVE_HOSTNAME=$HOSTNAME"
echo "ACTIVE_USER=$USER"
} >> "$GITHUB_ENV"
- name: "Checkout Source"
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
clean: true
fetch-depth: 1
- name: "Check for merge commits"
uses: ./.github/actions/check-no-merge-commits
valid-changelog:
if: github.event.pull_request.draft == false
runs-on: [self-hosted, linux, build]
steps:
- name: "Initialise Workspace"
if: runner.environment == 'self-hosted'
shell: bash
run: sudo chown -R "$USER:$USER" "$GITHUB_WORKSPACE"
- name: "Set Active Environment"
shell: bash
run: |
{
echo "ACTIVE_RUNNER_NAME=${{runner.name}}"
echo "ACTIVE_HOSTNAME=$HOSTNAME"
echo "ACTIVE_USER=$USER"
} >> "$GITHUB_ENV"
- name: "Checkout Source"
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
clean: true
fetch-depth: 1
- name: "Check Required Secrets"
uses: ./.github/actions/check-required-secret
with:
secret-name: "SOURCE_PUSH_TOKEN"
secret-value: ${{secrets.SOURCE_PUSH_TOKEN}}
- name: "Install dotnet"
uses: ./.github/actions/dotnet-install
with:
github-token: ${{secrets.SOURCE_PUSH_TOKEN}}
nuget-public-restore-feed-cache: ${{vars.NUGET_BAGET_CACHE}}
nuget-public-restore-feed: ${{vars.NUGET_PUBLIC_RESTORE_FEED || 'https://api.nuget.org/v3/index.json'}}
nuget-additional-restore-feed-release-cache: ""
nuget-additional-restore-feed-prerelease-cache: ""
nuget-additional-restore-feed-release: ""
nuget-additional-restore-feed-prerelease: ""
- name: "Install Changelog tool"
uses: ./.github/actions/dotnet-tool
with:
tool-name: "Credfeto.ChangeLog.Cmd"
tool-version: "latest"
- name: "Check Changelog"
uses: ./.github/actions/dotnet-tool-run
with:
working-directory: ${{github.workspace}}
tool-name: "changelog"
tool-arguments: "--changelog \"${{github.workspace}}/CHANGELOG.md\" --lint"
# @@required: main
lint-code:
if: |-
github.event.pull_request.draft == false &&
( !startsWith(github.head_ref, 'release/') && !startsWith(github.head_ref, 'hotfix/') )
runs-on: [self-hosted, linux, build]
steps:
- name: "Initialise Workspace"
if: runner.environment == 'self-hosted'
shell: bash
run: sudo chown -R "$USER:$USER" "$GITHUB_WORKSPACE"
- name: "Set Active Environment"
shell: bash
run: |
{
echo "ACTIVE_RUNNER_NAME=${{runner.name}}"
echo "ACTIVE_HOSTNAME=$HOSTNAME"
echo "ACTIVE_USER=$USER"
} >> "$GITHUB_ENV"
- name: "Checkout Source"
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
clean: true
fetch-depth: 0
- name: "Check Required Secrets"
uses: ./.github/actions/check-required-secret
with:
secret-name: "SOURCE_PUSH_TOKEN"
secret-value: ${{secrets.SOURCE_PUSH_TOKEN}}
- name: "Run Linter"
uses: super-linter/super-linter@4ce20838b8ab83717e78138c5b3a1407148e0918 # v8.7.0
env:
CLOUDFORMATION_CONFIG_FILE: .cfnlintrc.yaml
DEFAULT_BRANCH: main
ENABLE_GITHUB_ACTIONS_STEP_SUMMARY: true
GITHUB_ACTIONS_CONFIG_FILE: actionlint.yaml
GITHUB_TOKEN: ${{secrets.SOURCE_PUSH_TOKEN}}
MULTI_STATUS: true
SAVE_SUPER_LINTER_SUMMARY: true
SQLFLUFF_CONFIG_FILE: .sqlfluff
VALIDATE_ALL_CODEBASE: false
VALIDATE_ANSIBLE: true
VALIDATE_BASH: true
VALIDATE_CLOUDFORMATION: true
VALIDATE_CSS: true
VALIDATE_DOCKERFILE: true
VALIDATE_DOCKERFILE_HADOLINT: true
VALIDATE_ENV: true
VALIDATE_GITHUB_ACTIONS: true
VALIDATE_JSON: true
VALIDATE_MD: true
VALIDATE_POWERSHELL: true
VALIDATE_PYTHON: true
VALIDATE_PYTHON_PYLINT: true
VALIDATE_SQLFLUFF: true
VALIDATE_TYPESCRIPT_ES: true
VALIDATE_XML: true
VALIDATE_YAML: true
# @@required: main
poutine:
runs-on: ubuntu-latest
permissions:
security-events: write
contents: read
pull-requests: write
steps:
- name: "Initialise Workspace"
if: runner.environment == 'self-hosted'
shell: bash
run: sudo chown -R "$USER:$USER" "$GITHUB_WORKSPACE"
- name: "Checkout Source"
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: "Check repo visibility"
uses: ./.github/actions/check-repo-visibility
id: visibility
- name: "Ensure Results folder exists"
working-directory: ${{github.workspace}}
shell: bash
run: |
[ ! -d "${{github.workspace}}/results" ] && mkdir "${{github.workspace}}/results" || echo "Results created"
- name: "Poutine"
uses: boostsecurityio/poutine-action@e240ebd3eff8b2db5a8e5f6b28f58739d7db2247 # v1.1.4
with:
format: 'sarif'
output: "${{github.workspace}}/results/poutine.sarif"
- name: "Summarise Poutine findings"
uses: ./.github/actions/sarif-summary
with:
title: "Poutine findings"
glob: "poutine.sarif"
############################################################################################################
# Upload Sarif files to GitHub
############################################################################################################
- name: "Upload SARIF file for diagnostics"
if: always()
uses: ./.github/actions/sarif
with:
repo-visibility: ${{steps.visibility.outputs.is_public == 'true' && 'public' || 'private'}}