File tree 1 file changed +24
-0
lines changed
1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -11,14 +11,38 @@ permissions:
11
11
contents : read
12
12
13
13
jobs :
14
+ diagnostics :
15
+ name : Run diagnostics
16
+ runs-on : ubuntu-latest
17
+ steps :
18
+ # Note that a duplicate of this step must be added at the top of
19
+ # each job.
20
+ - id : harden-runner
21
+ name : Harden the runner
22
+ uses : step-security/harden-runner@v2
23
+ with :
24
+ egress-policy : audit
25
+ - id : github-status
26
+ name : Check GitHub status
27
+ uses : crazy-max/ghaction-github-status@v3
28
+ - id : dump-context
29
+ name : Dump context
30
+ uses : crazy-max/ghaction-dump-context@v2
14
31
labeler :
32
+ needs :
33
+ - diagnostics
15
34
permissions :
16
35
# actions/checkout needs this to fetch code
17
36
contents : read
18
37
# crazy-max/ghaction-github-labeler needs this to manage repository labels
19
38
issues : write
20
39
runs-on : ubuntu-latest
21
40
steps :
41
+ - id : harden-runner
42
+ name : Harden the runner
43
+ uses : step-security/harden-runner@v2
44
+ with :
45
+ egress-policy : audit
22
46
- uses : actions/checkout@v4
23
47
- name : Sync repository labels
24
48
if : success()
You can’t perform that action at this time.
0 commit comments