-
Notifications
You must be signed in to change notification settings - Fork 106
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
New Release Notification Doesn't Include Release Notes #726
Comments
The reason this happens is probably that I create releases with our |
@jonasnick, I could amend the Which script do you use to create the |
Thanks @erikarvstedt, this would work. I don't have a script to create the |
So you create the change log section manually? |
I use this #!/usr/bin/env bash
set -euo pipefail
REPO=fort-nix/nix-bitcoin
curl https://api.github.com/repos/$REPO/pulls?state=closed | jq '.[] | {closed_at,number,title,user: .user.login}' | jq -c -r '.closed_at + " #" + (.number|tostring) + " " + .title + " (@" + .user + ")"' | sort | awk -F' ' '{$1 = ""; print}' but it just shows all PRs instead of the ones since the last release and it doesn't distinguish closed from merged PRs. |
For some reason, the notification I get from GitHub for new releases for
nix-bitcoin
doesn't include release notes.Is there anything we can change in the release process to make them show up?
I understand this is a relatively small, lower priorty issue, but I'd greatly appreciate it.
image
The text was updated successfully, but these errors were encountered: