diff options
author | Rick Elrod <rick@elrod.me> | 2023-12-06 15:43:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-06 15:43:45 +0100 |
commit | fe6bac6d9ebb5b5895c61385b47d9f303c70d777 (patch) | |
tree | 933e65d0bf3d1541016dd8234749fce35b78c728 /.github/workflows/update_dependabot_prs.yml | |
parent | Fix the bulk Job Launch Integration test in awx collection (#14702) (diff) | |
download | awx-fe6bac6d9ebb5b5895c61385b47d9f303c70d777.tar.xz awx-fe6bac6d9ebb5b5895c61385b47d9f303c70d777.zip |
[CI] Reduce GHA timeouts from 6h default (#14704)
* [CI] Reduce GHA timeouts from 6h default
The goal here is to never interfere with a real run (so most of the
timeout-minutes values seem rather high) but to avoid having 6h long
runs if something goes crazy and never ends.
Signed-off-by: Rick Elrod <rick@elrod.me>
* Do bash hackery instead
Signed-off-by: Rick Elrod <rick@elrod.me>
---------
Signed-off-by: Rick Elrod <rick@elrod.me>
Diffstat (limited to '.github/workflows/update_dependabot_prs.yml')
-rw-r--r-- | .github/workflows/update_dependabot_prs.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/update_dependabot_prs.yml b/.github/workflows/update_dependabot_prs.yml index a61eb1c172..bcb0b7674a 100644 --- a/.github/workflows/update_dependabot_prs.yml +++ b/.github/workflows/update_dependabot_prs.yml @@ -9,6 +9,7 @@ jobs: name: Update Dependabot Prs if: contains(github.event.pull_request.labels.*.name, 'dependencies') && contains(github.event.pull_request.labels.*.name, 'component:ui') runs-on: ubuntu-latest + timeout-minutes: 20 steps: - name: Checkout branch |