diff --git a/.github/workflows/ai-assistant-fetch-content.yml b/.github/workflows/ai-assistant-fetch-content.yml index 71aa355..44ef041 100644 --- a/.github/workflows/ai-assistant-fetch-content.yml +++ b/.github/workflows/ai-assistant-fetch-content.yml @@ -16,6 +16,7 @@ jobs: update-content: name: Fetch content for OpenAI assistant runs-on: ubuntu-22.04 + timeout-minutes: 30 env: PURGE_ALL_CONTENT: ${{inputs.purge-all-content}} BRANCH_NAME: fetch-ai-content-${{ github.run_id }}-${{ github.run_attempt }} diff --git a/.github/workflows/ai-assistant-reconfigure.yml b/.github/workflows/ai-assistant-reconfigure.yml index c9e4b63..1492b66 100644 --- a/.github/workflows/ai-assistant-reconfigure.yml +++ b/.github/workflows/ai-assistant-reconfigure.yml @@ -14,6 +14,7 @@ jobs: reconfigure-ai-assistant: name: Reconfigure OpenAI assistant runs-on: ubuntu-22.04 + timeout-minutes: 15 steps: - name: Set environment variables run: | diff --git a/.github/workflows/branch-pr-build.yml b/.github/workflows/branch-pr-build.yml index 16fa9aa..3dc2444 100644 --- a/.github/workflows/branch-pr-build.yml +++ b/.github/workflows/branch-pr-build.yml @@ -61,6 +61,7 @@ jobs: build-plugins: name: Build plugins without publish runs-on: ubuntu-latest + timeout-minutes: 60 if: github.event_name == 'pull_request' needs: [lint, test] steps: @@ -89,6 +90,7 @@ jobs: release-latest-plugins: if: github.event_name != 'pull_request' && github.ref == 'refs/heads/main' name: Build and release latest plugins + timeout-minutes: 60 runs-on: ubuntu-latest needs: [lint, test] steps: diff --git a/.github/workflows/tag-build.yml b/.github/workflows/tag-build.yml index 181cb2b..d843d17 100644 --- a/.github/workflows/tag-build.yml +++ b/.github/workflows/tag-build.yml @@ -12,6 +12,7 @@ env: jobs: release: name: Release plugins + timeout-minutes: 60 runs-on: ubuntu-latest if: startsWith(github.ref, 'refs/tags/v')