Skip to content

Commit 3e38b2d

Browse files
Copilotjsturtevant
andcommitted
Add --repo parameter to gh commands for testing support
- Added --repo "$REPO" to gh issue comment command (line 103) - Added --repo "$REPO" to gh issue create command (line 148) - This enables testing against specific repositories by setting the REPO variable Co-authored-by: jsturtevant <[email protected]>
1 parent a8cb0ce commit 3e38b2d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

dev/notify-fuzzing-failure.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ The scheduled fuzzing job has failed again. Please check the workflow logs and a
100100
- [ ] Fix the underlying issue causing the fuzzing failures"
101101

102102
# Add comment to the existing issue
103-
if gh issue comment "$ISSUE_NUMBER" --body "$COMMENT_BODY"; then
103+
if gh issue comment "$ISSUE_NUMBER" --body "$COMMENT_BODY" --repo "$REPO"; then
104104
echo "✅ Added comment to existing issue #$ISSUE_NUMBER: $ISSUE_URL"
105105
else
106106
echo "❌ Failed to add comment to existing issue. Creating new issue instead."
@@ -144,7 +144,8 @@ The fuzzing workflow failed during execution. Please check the workflow logs and
144144
--body "$ISSUE_BODY" \
145145
--label "$FUZZING_LABEL" \
146146
--label "$FAILURE_LABEL" \
147-
--label "$LIFECYCLE_LABEL"); then
147+
--label "$LIFECYCLE_LABEL" \
148+
--repo "$REPO"); then
148149
echo "✅ Created new fuzzing failure issue: $ISSUE_URL"
149150
else
150151
echo "❌ Failed to create new fuzzing failure issue"

0 commit comments

Comments
 (0)