From 50d003665aa7efe3b324b445da17b9117eedeab3 Mon Sep 17 00:00:00 2001 From: Robert Jackson Date: Mon, 24 Oct 2022 13:51:13 -0400 Subject: [PATCH] Ensure CI jobs timeout after 10 minutes Prevents an accidentally hanging CI job from eating up all of our CI concurrency. --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c833fb46..f101c8c7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,6 +17,7 @@ jobs: test: name: Tests runs-on: ubuntu-latest + timeout-minutes: 10 steps: - uses: actions/checkout@v3 @@ -28,6 +29,7 @@ jobs: floating-dependencies: name: 'Floating Dependencies' runs-on: ubuntu-latest + timeout-minutes: 10 steps: - uses: actions/checkout@v3 @@ -37,8 +39,8 @@ jobs: try-scenarios: name: 'Try: ${{ matrix.ember-try-scenario }}' - runs-on: ubuntu-latest + timeout-minutes: 10 needs: test