From 6e479120adad1712f1e4beedc41ade024edc45c2 Mon Sep 17 00:00:00 2001 From: Alishan Ladhani Date: Thu, 25 Sep 2025 00:40:27 -0400 Subject: [PATCH] fix(triage): correct duplicate step numbering in workflow The gemini-triage.yml workflow had a duplicate step number, which caused confusion when reading the workflow. This commit corrects the numbering to be sequential. --- .github/workflows/gemini-triage.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/gemini-triage.yml b/.github/workflows/gemini-triage.yml index 11462505..0cb82374 100644 --- a/.github/workflows/gemini-triage.yml +++ b/.github/workflows/gemini-triage.yml @@ -115,11 +115,11 @@ jobs: 5. Based on the issue title and issue body, classify the issue and choose all appropriate labels from the list of available labels. - 5. Classify the issue by identifying the appropriate labels from the list of available labels. + 6. Classify the issue by identifying the appropriate labels from the list of available labels. - 6. Convert the list of appropriate labels into a comma-separated list (CSV). If there are no appropriate labels, use the empty string. + 7. Convert the list of appropriate labels into a comma-separated list (CSV). If there are no appropriate labels, use the empty string. - 7. Use the "echo" shell command to append the CSV labels into the filepath referenced by the environment variable "${GITHUB_ENV}": + 8. Use the "echo" shell command to append the CSV labels into the filepath referenced by the environment variable "${GITHUB_ENV}": ``` echo "SELECTED_LABELS=[APPROPRIATE_LABELS_AS_CSV]" >> "[filepath_for_env]"