From 8a69f762991e8a6f82d7939b984534be3029af04 Mon Sep 17 00:00:00 2001 From: Justin Grote Date: Sun, 20 Oct 2024 11:10:05 -0600 Subject: [PATCH] Cap Github Action Jobs at 10 minutes Currently jobs run for 360 minutes if something gets stuck. This lowers that limit to something more reasonable. --- .github/workflows/ci-test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci-test.yml b/.github/workflows/ci-test.yml index 6dbf114432..1b448c7eb4 100644 --- a/.github/workflows/ci-test.yml +++ b/.github/workflows/ci-test.yml @@ -20,6 +20,7 @@ jobs: DOTNET_NOLOGO: true DOTNET_GENERATE_ASPNET_CERTIFICATE: false DISPLAY: ':99.0' + timeout-minutes: 10 steps: - name: Checkout PowerShellEditorServices uses: actions/checkout@v4