Skip to content

Instantly share code, notes, and snippets.

@lovromazgon
lovromazgon / find-prs.sh
Created May 12, 2025 12:44
Find GitHub PRs in all repositories of an organization based on title
#!/bin/bash
ORG_NAME="$1"
PR_TITLE="$2"
if [ -z "$ORG_NAME" ] || [ -z "$PR_TITLE" ]; then
echo "Usage: $0 <organization_name> <pull_request_title>"
exit 1
fi