├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .env-sample ├── .github ├── CODEOWNERS ├── dependabot.yml └── workflows │ ├── docker-build-publish.yml │ ├── pr.yml │ ├── review-probot-prs.yml │ └── test.yml ├── .gitignore ├── .vscode └── launch.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── SECURITY.md ├── app.js ├── emergency-pr-manifest.yml ├── handler.js ├── issueBody.md ├── package.json ├── slackMessage.txt ├── slackMessageNoIssue.txt ├── template.yml └── test.js /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/emergency-pull-request-probot-app/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/emergency-pull-request-probot-app/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.env-sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/emergency-pull-request-probot-app/HEAD/.env-sample -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/emergency-pull-request-probot-app/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/emergency-pull-request-probot-app/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/docker-build-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/emergency-pull-request-probot-app/HEAD/.github/workflows/docker-build-publish.yml -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/emergency-pull-request-probot-app/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.github/workflows/review-probot-prs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/emergency-pull-request-probot-app/HEAD/.github/workflows/review-probot-prs.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/emergency-pull-request-probot-app/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/emergency-pull-request-probot-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/emergency-pull-request-probot-app/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/emergency-pull-request-probot-app/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/emergency-pull-request-probot-app/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/emergency-pull-request-probot-app/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/emergency-pull-request-probot-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/emergency-pull-request-probot-app/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/emergency-pull-request-probot-app/HEAD/SECURITY.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/emergency-pull-request-probot-app/HEAD/app.js -------------------------------------------------------------------------------- /emergency-pr-manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/emergency-pull-request-probot-app/HEAD/emergency-pr-manifest.yml -------------------------------------------------------------------------------- /handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/emergency-pull-request-probot-app/HEAD/handler.js -------------------------------------------------------------------------------- /issueBody.md: -------------------------------------------------------------------------------- 1 | Pull request # was labeled as an emergency. 2 | - [ ] Reviewed -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/emergency-pull-request-probot-app/HEAD/package.json -------------------------------------------------------------------------------- /slackMessage.txt: -------------------------------------------------------------------------------- 1 | <#pr|Pull request> has been labeled as `#l` 2 | <#i|Audit issue created> -------------------------------------------------------------------------------- /slackMessageNoIssue.txt: -------------------------------------------------------------------------------- 1 | <#pr|Pull request> has been labeled as `#l` -------------------------------------------------------------------------------- /template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/emergency-pull-request-probot-app/HEAD/template.yml -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/emergency-pull-request-probot-app/HEAD/test.js --------------------------------------------------------------------------------