Skip to content

Instantly share code, notes, and snippets.

@tzach
Created February 6, 2023 19:45
Show Gist options
  • Save tzach/9e15031ac35b6796ef33abdca1a920bc to your computer and use it in GitHub Desktop.
Save tzach/9e15031ac35b6796ef33abdca1a920bc to your computer and use it in GitHub Desktop.
git log scylla-5.1.0..scylla-5.2.0-rc0 | grep -E -i '(fixes|fix|close|closes|closed|fixed|resolve|resolved|resolved) #' | grep -Eo '#[0-9]*'
@tzach
Copy link
Author

tzach commented Feb 8, 2023

Extract URL and Tile from the above:

cat git-issues-fixed-5.2.txt | uniq | cut -c2- | xargs -I '{}' gh api -H "Accept: application/vnd.github+json" /repos/scylladb/scylladb/issues/{} -q ."html_url",."title"  | paste -d " "  - - > git-issues-fixed-5.2.long.txt

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment