From 6d8d46110d10afa71165f1430e43e42a8d2edef2 Mon Sep 17 00:00:00 2001 From: Andre Manoel Date: Fri, 26 Jun 2026 15:50:01 -0300 Subject: [PATCH] chore: make agentic CI timeout configurable --- .github/workflows/agentic-ci-pr-review.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/agentic-ci-pr-review.yml b/.github/workflows/agentic-ci-pr-review.yml index d6124baaf..8aaa7901a 100644 --- a/.github/workflows/agentic-ci-pr-review.yml +++ b/.github/workflows/agentic-ci-pr-review.yml @@ -9,6 +9,9 @@ on: pr_number: description: "PR number to review" required: true + timeout_minutes: + description: "Review job timeout in minutes. Defaults to AGENTIC_CI_TIMEOUT_MINUTES or 15." + required: false permissions: checks: write @@ -88,7 +91,7 @@ jobs: if: needs.gate.outputs.allowed == 'true' runs-on: [self-hosted, agentic-ci] environment: agentic-ci - timeout-minutes: 15 + timeout-minutes: ${{ fromJSON(inputs.timeout_minutes || vars.AGENTIC_CI_TIMEOUT_MINUTES || '15') }} steps: - name: Determine PR number id: pr