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 2222jobs :
2323 build :
2424 runs-on : ubuntu-latest
25+ timeout-minutes : 30
2526
2627 strategy :
2728 matrix :
7677 checkstyle :
7778 runs-on : ubuntu-latest
7879 if : ${{ github.event_name != 'pull_request' || !startsWith(github.head_ref, 'renovate/') }}
80+ timeout-minutes : 15
7981
8082 strategy :
8183 matrix :
98100 pmd :
99101 runs-on : ubuntu-latest
100102 if : ${{ github.event_name != 'pull_request' || !startsWith(github.head_ref, 'renovate/') }}
103+ timeout-minutes : 15
101104
102105 strategy :
103106 matrix :
Original file line number Diff line number Diff line change @@ -9,8 +9,9 @@ permissions:
99 pull-requests : write
1010
1111jobs :
12- check_code : # Validates the code
12+ check_code :
1313 runs-on : ubuntu-latest
14+ timeout-minutes : 30
1415 steps :
1516 - uses : actions/checkout@v4
1617
4546 prepare_release :
4647 runs-on : ubuntu-latest
4748 needs : [check_code]
49+ timeout-minutes : 10
4850 outputs :
4951 upload_url : ${{ steps.create_release.outputs.upload_url }}
5052 steps :
99101 publish :
100102 runs-on : ubuntu-latest
101103 needs : [prepare_release]
104+ timeout-minutes : 60
102105 steps :
103106 - uses : actions/checkout@v4
104107
@@ -132,6 +135,7 @@ jobs:
132135 after_release :
133136 runs-on : ubuntu-latest
134137 needs : [publish]
138+ timeout-minutes : 10
135139 steps :
136140 - uses : actions/checkout@v4
137141
Original file line number Diff line number Diff line change 2727 token-check :
2828 runs-on : ubuntu-latest
2929 if : ${{ !(github.event_name == 'pull_request' && startsWith(github.head_ref, 'renovate/')) }}
30+ timeout-minutes : 5
3031 outputs :
3132 hasToken : ${{ steps.check-token.outputs.has }}
3233 steps :
4041 runs-on : ubuntu-latest
4142 needs : token-check
4243 if : ${{ needs.token-check.outputs.hasToken }}
44+ timeout-minutes : 30
4345 steps :
4446 - uses : actions/checkout@v4
4547 with :
Original file line number Diff line number Diff line change 66jobs :
77 publish :
88 runs-on : ubuntu-latest
9+ timeout-minutes : 60
910 steps :
1011 - uses : actions/checkout@v4
1112
You can’t perform that action at this time.
0 commit comments