Skip to content

Instantly share code, notes, and snippets.

@bmlevine11
bmlevine11 / fetch_prs.sh
Created January 28, 2026 15:18
PR Script
#!/bin/bash
# GitHub PR Report Generator for Team Raptor
# Fetches all PRs authored by team members across the Lessonly organization
set -e
# Load environment variables from .env file
if [ -f .env ]; then
export $(grep -v '^#' .env | xargs)