Skip to content

Instantly share code, notes, and snippets.

View savannahostrowski's full-sized avatar
in your terminal

Savannah Ostrowski savannahostrowski

in your terminal
View GitHub Profile
@savannahostrowski
savannahostrowski / blog_issues.sh
Created August 31, 2023 04:53
Used to grab azd repo issues that were closed between the last release and current release and format them for the blog
#!/usr/bin/env bash
# Usage: ./blog_issues.sh
# Set the start and end dates
read -p "Setting start date: " start_date;
read -p "Setting end date: " end_date;
echo start_date: $start_date end_date: $end_date;
gh issue list --repo azure/azure-dev --search "state:closed closed:$start_date..$end_date" --json number,title,closedAt,author --jq '.[] | "- \(.title) ([azure-dev#\(.number)](https://www.github.com/azure/azure-dev/issues/\(.number)))"' > blog_issues.md