From d0e79fa31a6f9efdf9ba0afa8eea5f336be135fc Mon Sep 17 00:00:00 2001 From: Bastien Teinturier <31281497+t-bast@users.noreply.github.com> Date: Wed, 14 Apr 2021 17:56:58 +0200 Subject: [PATCH] Add shorter CI timeout (#1769) The default is 360 minutes which is very long. Our builds are usually around 10 minutes, so 20 minutes is a good value to prevent overbilling builds that create infinite loops. --- .github/workflows/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ea78912db..3a48b058d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,6 +10,7 @@ jobs: build: runs-on: ubuntu-latest + timeout-minutes: 20 steps: - uses: actions/checkout@v2