Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove clutter from automatically generated release notes #2790

Merged
merged 1 commit into from
Jul 24, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/logger.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,12 @@ function filter_commits_by_tag_interval {
temp=$(git log --merges "${1}..${2}" --format=%B)
# Remove those merge commits for updating feature branches
temp=$(echo "${temp}" | grep -v -E "Merge branch")
# Remove default merge commit messages
temp=$(echo "${temp}" | grep -v -E "Merge pull request")
# Remove merge backs from release to dev (which is done after every release)
temp=$(echo "${temp}" | grep -v -E "back into dev")
# Find lines that start with "# " and replace them with ""
temp=$(echo "${temp}" | sed -r 's/^# //')
echo "$temp"
}

Expand Down
Loading