From d88479c3a8051dbc3489308800fea0751d3f5474 Mon Sep 17 00:00:00 2001 From: Kong Team Eng Enablement Bot <96491250+team-eng-enablement@users.noreply.github.com> Date: Sat, 3 Feb 2024 04:09:53 -0800 Subject: [PATCH] Update default timeouts for .github/workflows/publish.yaml [skip ci] --- .github/workflows/publish.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 8a7bd2da2..db409b816 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -9,6 +9,7 @@ on: jobs: run-tests: + timeout-minutes: ${{ fromJSON(vars.GHA_DEFAULT_TIMEOUT) }} name: Tests uses: ./.github/workflows/test.yaml # Must pass in secrets here so that the calling workflow can pass in the NPM_TOKEN needed to install private packages. @@ -16,6 +17,7 @@ jobs: NPM_TOKEN: ${{ secrets.NPM_TOKEN_PUBLIC_PUBLISH }} VITE_AUTH_URL: ${{ secrets.VITE_AUTH_URL }} publish: + timeout-minutes: ${{ fromJSON(vars.GHA_DEFAULT_TIMEOUT) }} needs: run-tests name: Build and Publish runs-on: ubuntu-latest