Last active
November 13, 2025 17:36
-
-
Save Integralist/161ccb4cf6d86796e1dc8267d5043002 to your computer and use it in GitHub Desktop.
Merged PRs Analysis #shell #jq #github #cli
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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