Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
RoanPaulus committed Jan 29, 2025
1 parent 44fb637 commit 47e752e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/release-notification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ jobs:
RELEASE_NOTES: ${{ env.RELEASE_NOTES }}
id: categorize_notes
run: |
# TODO: Do not write to file but store release notes in variable.
echo "$RELEASE_NOTES" > release_notes.txt
grep -iE 'CHORE|MIJN-[0-9]+-CHORE' release_notes.txt | sort -u > chores.txt || true
grep -iE 'FEATURE:|MIJN-[0-9]+-FEATURE' release_notes.txt > features.txt || true
Expand All @@ -78,6 +79,10 @@ jobs:
return 0
fi
echo "DEBUG: $1.txt contents"
echo "$1.txt"
# Create multiline strings delimited by EOF for subsequent runner steps.
echo "$1<<EOF" >> "$GITHUB_OUTPUT"
cat "$1.txt" >> "$GITHUB_OUTPUT"
echo "EOF" >> "$GITHUB_OUTPUT"
Expand Down

0 comments on commit 47e752e

Please sign in to comment.