We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9bc71a5 commit 3b79ee7Copy full SHA for 3b79ee7
1 file changed
examples/workflows/issue-triage/gemini-scheduled-triage.yml
@@ -82,6 +82,9 @@ jobs:
82
echo '📝 Setting output for GitHub Actions...'
83
echo "issues_to_triage=${ISSUES}" >> "${GITHUB_OUTPUT}"
84
85
+ ISSUE_NUMBERS="$(echo "${ISSUES}" | jq -r '.[].number | tostring' | paste -sd, -)"
86
+ echo "issue_numbers=${ISSUE_NUMBERS}" >> "${GITHUB_OUTPUT}"
87
+
88
ISSUE_COUNT="$(echo "${ISSUES}" | jq 'length')"
89
echo "✅ Found ${ISSUE_COUNT} issue(s) to triage! 🎯"
90
@@ -109,6 +112,7 @@ jobs:
109
112
use_vertex_ai: '${{ vars.GOOGLE_GENAI_USE_VERTEXAI }}'
110
113
upload_artifacts: '${{ vars.UPLOAD_ARTIFACTS }}'
111
114
workflow_name: 'gemini-scheduled-triage'
115
+ github_item_number: '${{ steps.find_issues.outputs.issue_numbers }}'
116
settings: |-
117
{
118
"model": {
0 commit comments