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/label_pr.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/label_pr.yml')
-rw-r--r-- | .github/workflows/label_pr.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/label_pr.yml b/.github/workflows/label_pr.yml index 6ee5a34e8b..15571a866c 100644 --- a/.github/workflows/label_pr.yml +++ b/.github/workflows/label_pr.yml @@ -14,6 +14,7 @@ permissions: jobs: triage: runs-on: ubuntu-latest + timeout-minutes: 20 name: Label PR steps: @@ -25,6 +26,7 @@ jobs: community: runs-on: ubuntu-latest + timeout-minutes: 20 name: Label PR - Community steps: - uses: actions/checkout@v3 |