├── .env.sample ├── .github └── workflows │ └── linting.yml ├── .gitignore ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── app.js ├── message.md ├── ownership.yaml └── package.json /.env.sample: -------------------------------------------------------------------------------- 1 | APP_ID="11" 2 | PRIVATE_KEY_PATH="very/secure/location/gh_app_key.pem" 3 | WEBHOOK_SECRET="secret" 4 | -------------------------------------------------------------------------------- /.github/workflows/linting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-app-js-sample/HEAD/.github/workflows/linting.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-app-js-sample/HEAD/.gitignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @github/ecosystem-apps-reviewers 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-app-js-sample/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-app-js-sample/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-app-js-sample/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-app-js-sample/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-app-js-sample/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-app-js-sample/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-app-js-sample/HEAD/app.js -------------------------------------------------------------------------------- /message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-app-js-sample/HEAD/message.md -------------------------------------------------------------------------------- /ownership.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-app-js-sample/HEAD/ownership.yaml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/github-app-js-sample/HEAD/package.json --------------------------------------------------------------------------------