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
| #!/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) |