@@ -96,12 +96,9 @@ inputs:
9696 required : false
9797 default : ' ${{ github.event.pull_request.number }}'
9898 github_issue_number :
99- description : ' The Issue number the CLI is operating on. Defaults to the event payload.'
99+ description : ' The Issue number (or comma-separated list of issue numbers) the CLI is operating on. Defaults to the event payload.'
100100 required : false
101101 default : ' ${{ github.event.issue.number }}'
102- github_custom_tracking_id :
103- description : ' A custom tracking ID (e.g. comma-separated list of issue IDs for scheduled batches).'
104- required : false
105102
106103outputs :
107104 summary :
@@ -246,7 +243,6 @@ runs:
246243 GH_WORKFLOW_NAME : ' ${{ steps.sanitize_workflow_name.outputs.gh_workflow_name }}'
247244 GH_PR_NUMBER : ' ${{ inputs.github_pr_number }}'
248245 GH_ISSUE_NUMBER : ' ${{ inputs.github_issue_number }}'
249- GH_CUSTOM_TRACKING_ID : ' ${{ inputs.github_custom_tracking_id }}'
250246 shell : ' bash'
251247 run : |-
252248 set -euo pipefail
@@ -432,7 +428,6 @@ runs:
432428 GH_WORKFLOW_NAME : ' ${{ steps.sanitize_workflow_name.outputs.gh_workflow_name }}'
433429 GH_PR_NUMBER : ' ${{ inputs.github_pr_number }}'
434430 GH_ISSUE_NUMBER : ' ${{ inputs.github_issue_number }}'
435- GH_CUSTOM_TRACKING_ID : ' ${{ inputs.github_custom_tracking_id }}'
436431
437432 - name : ' Upload Gemini CLI outputs'
438433 if : |-
@@ -461,7 +456,6 @@ runs:
461456 -e "s#GITHUB_RUN_ID_PLACEHOLDER#${GITHUB_RUN_ID}#g" \
462457 -e "s#GITHUB_PR_NUMBER_PLACEHOLDER#${GITHUB_PR_NUMBER}#g" \
463458 -e "s#GITHUB_ISSUE_NUMBER_PLACEHOLDER#${GITHUB_ISSUE_NUMBER}#g" \
464- -e "s#GITHUB_CUSTOM_TRACKING_ID_PLACEHOLDER#${GITHUB_CUSTOM_TRACKING_ID}#g" \
465459 "${GITHUB_ACTION_PATH}/scripts/collector-gcp.yaml.template" > ".gemini/collector-gcp.yaml"
466460
467461 # Ensure credentials file has the right permissions
@@ -514,7 +508,6 @@ runs:
514508 GITHUB_RUN_ID : ' ${{ github.run_id }}'
515509 GITHUB_PR_NUMBER : ' ${{ inputs.github_pr_number }}'
516510 GITHUB_ISSUE_NUMBER : ' ${{ inputs.github_issue_number }}'
517- GITHUB_CUSTOM_TRACKING_ID : ' ${{ inputs.github_custom_tracking_id }}'
518511
519512branding :
520513 icon : ' terminal'
0 commit comments