From 65c325d33e3e55f7214f2d4b786f4204751722b6 Mon Sep 17 00:00:00 2001 From: kaitranntt Date: Sun, 18 Jan 2026 15:32:47 -0500 Subject: [PATCH] fix(ci): disable track_progress for workflow_dispatch events track_progress is only supported for PR/issue events, not workflow_dispatch. Made the setting conditional on event type. --- .github/workflows/ai-review.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ai-review.yml b/.github/workflows/ai-review.yml index a346122f..5472cbc0 100644 --- a/.github/workflows/ai-review.yml +++ b/.github/workflows/ai-review.yml @@ -72,7 +72,7 @@ jobs: with: anthropic_api_key: ccs-internal-managed github_token: ${{ steps.app-token.outputs.token }} - track_progress: true + track_progress: ${{ github.event_name != 'workflow_dispatch' }} prompt: | REPO: ${{ github.repository }} PR NUMBER: ${{ github.event.pull_request.number || github.event.issue.number || github.event.inputs.pr_number }}