Skip to content

Commit

Permalink
scripts/prepare_changelog:Update to output entries not in CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
nywilken committed Nov 10, 2023
1 parent 09cd4c3 commit beea56f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions scripts/prepare_changelog.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@ get_prs(){
| while read line
do
if grep -q "GH-${line}" CHANGELOG.md; then
echo $line
continue
fi
echo $line
done | while read PR_NUM
do
out=$(gh pr view ${PR_NUM} --json "title,labels,url" > pull.json)
Expand All @@ -48,7 +49,7 @@ get_prs | while read line; do
if [[ "$line" =~ "bad" ]]; then
exit 1
fi
echo "Press enter to continue with next entry.."
echo "Press enter to continue with next entry."
vared -ch ok
done

Expand Down

0 comments on commit beea56f

Please sign in to comment.