Skip to content

Commit

Permalink
Remove terminal hyperlinks
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholasdille committed Dec 18, 2023
1 parent fd50dee commit adb2eb3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/release-notes.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,15 @@ echo
gh issue list \
--search="state:closed closed:>${TIMESTAMP} label:bug -label:wontfix" \
--json=number,title,url \
--template='{{range .}}- {{.title}} ({{hyperlink .url (printf "#%v" .number)}}){{"\n"}}{{end}}'
--template='{{range .}}- {{.title}} ([#{{.number}}]({{.url}})'

echo
echo "## Features (since ${PREVIOUS_TAG})"
echo
gh issue list \
--search="state:closed closed:>${TIMESTAMP} label:enhancement -label:wontfix" \
--json=number,title,url \
--template='{{range .}}- {{.title}} ({{hyperlink .url (printf "#%v" .number)}}){{"\n"}}{{end}}'
--template='{{range .}}- {{.title}} ([#{{.number}}]({{.url}})'

echo
echo "## Dependency updates (since ${PREVIOUS_TAG})"
Expand All @@ -68,7 +68,7 @@ gh pr list \
--state=merged \
--search="merged:>${TIMESTAMP} label:type/renovate" \
--json=number,title,url \
--template='{{range .}}- {{.title}} ({{hyperlink .url (printf "#%v" .number)}}){{"\n"}}{{end}}'
--template='{{range .}}- {{.title}} ([#{{.number}}]({{.url}})'

echo
cat <<EOF
Expand Down

0 comments on commit adb2eb3

Please sign in to comment.