├── .dockerignore ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ └── feature-request.yml ├── dependabot.yml └── workflows │ ├── build.yml │ ├── dependency-review.yml │ ├── markdown.yml │ └── release.yml ├── .gitignore ├── .release.yml ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── docker-compose.yml ├── docs └── process-flow.md ├── ghasreview ├── __init__.py ├── __main__.py ├── app.py ├── client.py ├── flask_githubapp │ ├── README.md │ ├── __init__.py │ └── core.py ├── models │ ├── __init__.py │ ├── codescanning.py │ ├── dependabot.py │ └── secretscanning.py └── setup.py └── gunicorn_config.py /.dockerignore: -------------------------------------------------------------------------------- 1 | 2 | .env 3 | config/ 4 | 5 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advanced-security/ghas-reviewer-app/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advanced-security/ghas-reviewer-app/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advanced-security/ghas-reviewer-app/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advanced-security/ghas-reviewer-app/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advanced-security/ghas-reviewer-app/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advanced-security/ghas-reviewer-app/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/markdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advanced-security/ghas-reviewer-app/HEAD/.github/workflows/markdown.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advanced-security/ghas-reviewer-app/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advanced-security/ghas-reviewer-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advanced-security/ghas-reviewer-app/HEAD/.release.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advanced-security/ghas-reviewer-app/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advanced-security/ghas-reviewer-app/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advanced-security/ghas-reviewer-app/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advanced-security/ghas-reviewer-app/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advanced-security/ghas-reviewer-app/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advanced-security/ghas-reviewer-app/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advanced-security/ghas-reviewer-app/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advanced-security/ghas-reviewer-app/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advanced-security/ghas-reviewer-app/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/process-flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advanced-security/ghas-reviewer-app/HEAD/docs/process-flow.md -------------------------------------------------------------------------------- /ghasreview/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advanced-security/ghas-reviewer-app/HEAD/ghasreview/__init__.py -------------------------------------------------------------------------------- /ghasreview/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advanced-security/ghas-reviewer-app/HEAD/ghasreview/__main__.py -------------------------------------------------------------------------------- /ghasreview/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advanced-security/ghas-reviewer-app/HEAD/ghasreview/app.py -------------------------------------------------------------------------------- /ghasreview/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advanced-security/ghas-reviewer-app/HEAD/ghasreview/client.py -------------------------------------------------------------------------------- /ghasreview/flask_githubapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advanced-security/ghas-reviewer-app/HEAD/ghasreview/flask_githubapp/README.md -------------------------------------------------------------------------------- /ghasreview/flask_githubapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advanced-security/ghas-reviewer-app/HEAD/ghasreview/flask_githubapp/__init__.py -------------------------------------------------------------------------------- /ghasreview/flask_githubapp/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advanced-security/ghas-reviewer-app/HEAD/ghasreview/flask_githubapp/core.py -------------------------------------------------------------------------------- /ghasreview/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advanced-security/ghas-reviewer-app/HEAD/ghasreview/models/__init__.py -------------------------------------------------------------------------------- /ghasreview/models/codescanning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advanced-security/ghas-reviewer-app/HEAD/ghasreview/models/codescanning.py -------------------------------------------------------------------------------- /ghasreview/models/dependabot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advanced-security/ghas-reviewer-app/HEAD/ghasreview/models/dependabot.py -------------------------------------------------------------------------------- /ghasreview/models/secretscanning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advanced-security/ghas-reviewer-app/HEAD/ghasreview/models/secretscanning.py -------------------------------------------------------------------------------- /ghasreview/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advanced-security/ghas-reviewer-app/HEAD/ghasreview/setup.py -------------------------------------------------------------------------------- /gunicorn_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/advanced-security/ghas-reviewer-app/HEAD/gunicorn_config.py --------------------------------------------------------------------------------