Skip to content

Instantly share code, notes, and snippets.

@Integralist
Last active November 13, 2025 17:36
Show Gist options
  • Select an option

  • Save Integralist/161ccb4cf6d86796e1dc8267d5043002 to your computer and use it in GitHub Desktop.

Select an option

Save Integralist/161ccb4cf6d86796e1dc8267d5043002 to your computer and use it in GitHub Desktop.
Merged PRs Analysis #shell #jq #github #cli
gh pr list --repo whatever/example -s merged -L 4666 --search "merged:>2025-05-13" --json author,mergeCommit,number,title,createdAt | jq -r '.[] | select(
(
(.title | startswith("build(deps)")) or
(.title | startswith("bump:")) or
(.title | startswith("build: bump")) or
(.title | startswith("Data update"))
) | not
) | "• \(.title) (\(.number)) -- \(.author.name)"'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment