Merge pull request #50177 from thaJeztah/tweak_timeouts

gha: lower timeouts on "build" and "merge" steps
This commit is contained in:
Paweł Gronowski
2025-06-20 14:28:21 +00:00
committed by GitHub

View File

@@ -91,7 +91,7 @@ jobs:
build:
runs-on: ubuntu-24.04
timeout-minutes: 120 # guardrails timeout for the whole job
timeout-minutes: 20 # guardrails timeout for the whole job
needs:
- validate-dco
- prepare
@@ -167,7 +167,7 @@ jobs:
merge:
runs-on: ubuntu-24.04
timeout-minutes: 120 # guardrails timeout for the whole job
timeout-minutes: 40 # guardrails timeout for the whole job
needs:
- build
if: always() && !contains(needs.*.result, 'failure') && !contains(needs.*.result, 'cancelled') && github.event_name != 'pull_request' && github.repository == 'moby/moby'