Generate and add "release notes" when distributing new builds on Firebase (staging and production) #198
Closed
Description
Why
Currently, the template supports existing CD workflows to distribute new builds to Firebase. There is a space for improvement to have release notes
on each build to clarify what is being covered with the new update for the PM and testers instead of showing the default release notes.
Solution: available solutions from TPC
-
after merging a PR to
develop
:echo "RELEASE_NOTE_CONTENT="$((git log -1 --merges | grep "\[") | grep . && echo "" || echo $(git log -1 --merges --format=%B))""
-
after merging a release PR to
main
echo "RELEASE_NOTE_CONTENT="$(git log --merges --pretty=%B $(git describe --abbrev=0 --tags)..HEAD | grep "\[")""
Who Benefits?
PM and Testers