File tree Expand file tree Collapse file tree 4 files changed +11
-1
lines changed Expand file tree Collapse file tree 4 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 22
22
jobs :
23
23
build :
24
24
runs-on : ubuntu-latest
25
+ timeout-minutes : 30
25
26
26
27
strategy :
27
28
matrix :
76
77
checkstyle :
77
78
runs-on : ubuntu-latest
78
79
if : ${{ github.event_name != 'pull_request' || !startsWith(github.head_ref, 'renovate/') }}
80
+ timeout-minutes : 15
79
81
80
82
strategy :
81
83
matrix :
98
100
pmd :
99
101
runs-on : ubuntu-latest
100
102
if : ${{ github.event_name != 'pull_request' || !startsWith(github.head_ref, 'renovate/') }}
103
+ timeout-minutes : 15
101
104
102
105
strategy :
103
106
matrix :
Original file line number Diff line number Diff line change @@ -9,8 +9,9 @@ permissions:
9
9
pull-requests : write
10
10
11
11
jobs :
12
- check_code : # Validates the code
12
+ check_code :
13
13
runs-on : ubuntu-latest
14
+ timeout-minutes : 30
14
15
steps :
15
16
- uses : actions/checkout@v4
16
17
45
46
prepare_release :
46
47
runs-on : ubuntu-latest
47
48
needs : [check_code]
49
+ timeout-minutes : 10
48
50
outputs :
49
51
upload_url : ${{ steps.create_release.outputs.upload_url }}
50
52
steps :
99
101
publish :
100
102
runs-on : ubuntu-latest
101
103
needs : [prepare_release]
104
+ timeout-minutes : 60
102
105
steps :
103
106
- uses : actions/checkout@v4
104
107
@@ -132,6 +135,7 @@ jobs:
132
135
after_release :
133
136
runs-on : ubuntu-latest
134
137
needs : [publish]
138
+ timeout-minutes : 10
135
139
steps :
136
140
- uses : actions/checkout@v4
137
141
Original file line number Diff line number Diff line change 27
27
token-check :
28
28
runs-on : ubuntu-latest
29
29
if : ${{ !(github.event_name == 'pull_request' && startsWith(github.head_ref, 'renovate/')) }}
30
+ timeout-minutes : 5
30
31
outputs :
31
32
hasToken : ${{ steps.check-token.outputs.has }}
32
33
steps :
40
41
runs-on : ubuntu-latest
41
42
needs : token-check
42
43
if : ${{ needs.token-check.outputs.hasToken }}
44
+ timeout-minutes : 30
43
45
steps :
44
46
- uses : actions/checkout@v4
45
47
with :
Original file line number Diff line number Diff line change 6
6
jobs :
7
7
publish :
8
8
runs-on : ubuntu-latest
9
+ timeout-minutes : 60
9
10
steps :
10
11
- uses : actions/checkout@v4
11
12
You can’t perform that action at this time.
0 commit comments