From c8bc1405ae704788a38a0744ff49d5462bcb98e8 Mon Sep 17 00:00:00 2001 From: travisladuke Date: Wed, 26 Jul 2023 14:22:12 -0700 Subject: [PATCH] add a timeout to build action prevent stuff from getting stuck and using all our minutes. The default timeout is 6 hours or something. --- .github/workflows/build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6ab7011..019e856 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,5 +13,6 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Build ${{ matrix.os }} - ${{ matrix.target }} + timeout-minutes: 6 uses: actions/checkout@v3.5.3 - run: make ${{ matrix.target }}