File tree 5 files changed +8
-0
lines changed
5 files changed +8
-0
lines changed Original file line number Diff line number Diff line change 12
12
13
13
jobs :
14
14
Tests :
15
+ permissions : {}
15
16
runs-on : ${{ matrix.os }}
16
17
timeout-minutes : 15
17
18
strategy :
41
42
env :
42
43
CI : true
43
44
Lint :
45
+ permissions : {}
44
46
runs-on : ubuntu-latest
45
47
timeout-minutes : 5
46
48
steps :
61
63
if : (${{ success() }} || ${{ failure() }}) # ensures this step runs even if previous steps fail
62
64
run : pnpm build && { [ "`git status --porcelain=v1`" == "" ] || (echo "Generated types have changed — please regenerate types locally with `cd packages/svelte && pnpm generate:types` and commit the changes after you have reviewed them"; git diff; exit 1); }
63
65
Benchmarks :
66
+ permissions : {}
64
67
runs-on : ubuntu-latest
65
68
timeout-minutes : 15
66
69
steps :
Original file line number Diff line number Diff line change 9
9
runs-on : ubuntu-latest
10
10
if : github.repository == 'sveltejs/svelte' && github.event.issue.pull_request && startsWith(github.event.comment.body, '/ecosystem-ci run')
11
11
steps :
12
+ - uses : GitHubSecurityLab/actions-permissions/monitor@v1
12
13
- uses : actions/github-script@v6
13
14
with :
14
15
script : |
Original file line number Diff line number Diff line change 11
11
name : ' Update comment'
12
12
runs-on : ubuntu-latest
13
13
steps :
14
+ - uses : GitHubSecurityLab/actions-permissions/monitor@v1
14
15
- name : Download artifact
15
16
uses : actions/download-artifact@v4
16
17
with :
Original file line number Diff line number Diff line change @@ -3,6 +3,8 @@ on: [push, pull_request]
3
3
4
4
jobs :
5
5
build :
6
+ permissions : {}
7
+
6
8
runs-on : ubuntu-latest
7
9
8
10
steps :
Original file line number Diff line number Diff line change 17
17
name : Release
18
18
runs-on : ubuntu-latest
19
19
steps :
20
+ - uses : GitHubSecurityLab/actions-permissions/monitor@v1
20
21
- name : Checkout Repo
21
22
uses : actions/checkout@v4
22
23
with :
You can’t perform that action at this time.
0 commit comments