├── .env.example ├── .gitignore ├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── enable-automated-security-fixes-for-org.js ├── enable-security-alerts-for-org-check.js ├── enable-security-alerts-for-org.js ├── lib ├── delay.js └── p-reduce.js ├── package.json └── shell_script ├── enable_automated_security_fixes_for_entire_org.sh └── enable_vulnerability_alerts_for_entire_org.sh /.env.example: -------------------------------------------------------------------------------- 1 | GH_AUTH_TOKEN= 2 | 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/enable-security-alerts-sample/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/enable-security-alerts-sample/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/enable-security-alerts-sample/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/enable-security-alerts-sample/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/enable-security-alerts-sample/HEAD/README.md -------------------------------------------------------------------------------- /enable-automated-security-fixes-for-org.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/enable-security-alerts-sample/HEAD/enable-automated-security-fixes-for-org.js -------------------------------------------------------------------------------- /enable-security-alerts-for-org-check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/enable-security-alerts-sample/HEAD/enable-security-alerts-for-org-check.js -------------------------------------------------------------------------------- /enable-security-alerts-for-org.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/enable-security-alerts-sample/HEAD/enable-security-alerts-for-org.js -------------------------------------------------------------------------------- /lib/delay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/enable-security-alerts-sample/HEAD/lib/delay.js -------------------------------------------------------------------------------- /lib/p-reduce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/enable-security-alerts-sample/HEAD/lib/p-reduce.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/enable-security-alerts-sample/HEAD/package.json -------------------------------------------------------------------------------- /shell_script/enable_automated_security_fixes_for_entire_org.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/enable-security-alerts-sample/HEAD/shell_script/enable_automated_security_fixes_for_entire_org.sh -------------------------------------------------------------------------------- /shell_script/enable_vulnerability_alerts_for_entire_org.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/enable-security-alerts-sample/HEAD/shell_script/enable_vulnerability_alerts_for_entire_org.sh --------------------------------------------------------------------------------