A collection of basic look up scripts to find all known vulnerabilities and any outstanding PRs from Dependabot.
Just replace '<<USERNAME>>' with your username, and gh needs to be installed and setup.
powershell
gh repo list '<<USERNAME>>' --no-archived --json nameWithOwner -q '.[].nameWithOwner' | ForEach-Object { echo "=== $_ ==="; gh api --paginate "/repos/$_/dependabot/alerts?state=open" --jq '.[] | {number, created_at, "severity": .security_vulnerability?.severity, "package": .security_vulnerability?.package?.name, "summary": .security_advisory?.summary, "url": .html_url}'; }