Skip to content

Commit

Permalink
chore: remove non-existing label from meta-issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ph1l1pF committed Dec 14, 2024
1 parent 8fc9891 commit c1813e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/find-issues-with-missing-labels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ ISSUE_NUMBER=$(echo "$LABEL_CHECK_ISSUE_EXISTS" | jq -r '.[].number')
if [ -z "$ISSUE_NUMBER" ]; then

# Create a new issue (with the list of issues in it).
gh issue create --repo $REPO --label "$LABEL_CHECK_ACTION" --title "$ISSUE_TITLE" --body "$(echo -e "$ISSUE_BODY")" || { echo "Failed to create issue."; exit 1; }
gh issue create --repo $REPO --title "$ISSUE_TITLE" --body "$(echo -e "$ISSUE_BODY")" || { echo "Failed to create issue."; exit 1; }
else
# Edit the open issue, and update the list of issues.
gh issue edit "$ISSUE_NUMBER" --repo $REPO --title "$ISSUE_TITLE" --body "$(echo -e "$ISSUE_BODY")" || { echo "Failed to update issue."; exit 1; }
Expand Down

0 comments on commit c1813e1

Please sign in to comment.