mirror of
https://github.com/tiennm99/ccs.git
synced 2026-07-16 14:16:43 +00:00
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.
This commit is contained in:
@@ -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 }}
|
||||
|
||||
Reference in New Issue
Block a user