Skip to content

Commit 1583008

Browse files
Copilotjsturtevant
andcommitted
Rename variable names for clarity: testing_label and fuzzing_label
Co-authored-by: jsturtevant <[email protected]>
1 parent 6e3b129 commit 1583008

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

dev/notify-fuzzing-failure.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ REPO_NAME=$(echo "$REPO" | cut -d'/' -f2)
4141

4242
# Define the issue title and labels
4343
ISSUE_TITLE="Fuzzing Job Failure - $(date '+%Y-%m-%d')"
44-
FUZZING_LABEL="area/testing"
44+
TESTING_LABEL="area/testing"
4545
FAILURE_LABEL="kind/bug"
46-
FUZZING_KIND_LABEL="area/fuzzing"
46+
FUZZING_LABEL="area/fuzzing"
4747
LIFECYCLE_LABEL="lifecycle/needs-review"
4848

4949
# Search for existing open fuzzing failure issues
@@ -138,9 +138,9 @@ The fuzzing workflow failed during execution. Please check the workflow logs and
138138
if ISSUE_URL=$(gh issue create \
139139
--title "$ISSUE_TITLE" \
140140
--body "$ISSUE_BODY" \
141-
--label "$FUZZING_LABEL" \
141+
--label "$TESTING_LABEL" \
142142
--label "$FAILURE_LABEL" \
143-
--label "$FUZZING_KIND_LABEL" \
143+
--label "$FUZZING_LABEL" \
144144
--label "$LIFECYCLE_LABEL" \
145145
--repo "$REPO"); then
146146
echo "✅ Created new fuzzing failure issue: $ISSUE_URL"

0 commit comments

Comments
 (0)