Skip to content

Commit a6ba442

Browse files
authored
fix(triage): correct duplicate step numbering in workflow (#331)
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.
1 parent 65211e7 commit a6ba442

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/gemini-triage.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,11 +115,11 @@ jobs:
115115
116116
5. Based on the issue title and issue body, classify the issue and choose all appropriate labels from the list of available labels.
117117
118-
5. Classify the issue by identifying the appropriate labels from the list of available labels.
118+
6. Classify the issue by identifying the appropriate labels from the list of available labels.
119119
120-
6. Convert the list of appropriate labels into a comma-separated list (CSV). If there are no appropriate labels, use the empty string.
120+
7. Convert the list of appropriate labels into a comma-separated list (CSV). If there are no appropriate labels, use the empty string.
121121
122-
7. Use the "echo" shell command to append the CSV labels into the filepath referenced by the environment variable "${GITHUB_ENV}":
122+
8. Use the "echo" shell command to append the CSV labels into the filepath referenced by the environment variable "${GITHUB_ENV}":
123123
124124
```
125125
echo "SELECTED_LABELS=[APPROPRIATE_LABELS_AS_CSV]" >> "[filepath_for_env]"

0 commit comments

Comments
 (0)