├── .coveragerc ├── .dockerignore ├── .env-example ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── copilot-instructions.md ├── dependabot.yml ├── linters │ ├── .flake8 │ ├── .isort.cfg │ ├── .jscpd.json │ ├── .markdown-lint.yml │ ├── .mypy.ini │ ├── .python-lint │ ├── .shellcheckrc │ ├── .textlintrc │ ├── .yaml-lint.yml │ ├── trivy.yaml │ └── zizmor.yaml ├── pull_request_template.md ├── release-drafter.yml └── workflows │ ├── auto-labeler.yml │ ├── contributors_report.yaml │ ├── copilot-setup-steps.yml │ ├── docker-ci.yml │ ├── pr-title.yml │ ├── python-ci.yml │ ├── release.yml │ ├── scorecard.yml │ ├── stale.yaml │ └── super-linter.yaml ├── .gitignore ├── .vscode └── settings.json ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── action.yml ├── auth.py ├── cleanowners.py ├── env.py ├── markdown_writer.py ├── requirements-test.txt ├── requirements.txt ├── test_auth.py ├── test_cleanowners.py ├── test_env.py ├── test_env_get_bool.py └── test_markdown_writer.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/.coveragerc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/.env-example -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/linters/.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/.github/linters/.flake8 -------------------------------------------------------------------------------- /.github/linters/.isort.cfg: -------------------------------------------------------------------------------- 1 | [settings] 2 | profile = black 3 | -------------------------------------------------------------------------------- /.github/linters/.jscpd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/.github/linters/.jscpd.json -------------------------------------------------------------------------------- /.github/linters/.markdown-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/.github/linters/.markdown-lint.yml -------------------------------------------------------------------------------- /.github/linters/.mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/.github/linters/.mypy.ini -------------------------------------------------------------------------------- /.github/linters/.python-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/.github/linters/.python-lint -------------------------------------------------------------------------------- /.github/linters/.shellcheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/.github/linters/.shellcheckrc -------------------------------------------------------------------------------- /.github/linters/.textlintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/.github/linters/.textlintrc -------------------------------------------------------------------------------- /.github/linters/.yaml-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/.github/linters/.yaml-lint.yml -------------------------------------------------------------------------------- /.github/linters/trivy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/.github/linters/trivy.yaml -------------------------------------------------------------------------------- /.github/linters/zizmor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/.github/linters/zizmor.yaml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/auto-labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/.github/workflows/auto-labeler.yml -------------------------------------------------------------------------------- /.github/workflows/contributors_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/.github/workflows/contributors_report.yaml -------------------------------------------------------------------------------- /.github/workflows/copilot-setup-steps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/.github/workflows/copilot-setup-steps.yml -------------------------------------------------------------------------------- /.github/workflows/docker-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/.github/workflows/docker-ci.yml -------------------------------------------------------------------------------- /.github/workflows/pr-title.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/.github/workflows/pr-title.yml -------------------------------------------------------------------------------- /.github/workflows/python-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/.github/workflows/python-ci.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/.github/workflows/scorecard.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/.github/workflows/stale.yaml -------------------------------------------------------------------------------- /.github/workflows/super-linter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/.github/workflows/super-linter.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/action.yml -------------------------------------------------------------------------------- /auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/auth.py -------------------------------------------------------------------------------- /cleanowners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/cleanowners.py -------------------------------------------------------------------------------- /env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/env.py -------------------------------------------------------------------------------- /markdown_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/markdown_writer.py -------------------------------------------------------------------------------- /requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/requirements-test.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | github3.py==4.0.1 2 | python-dotenv==1.2.1 3 | -------------------------------------------------------------------------------- /test_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/test_auth.py -------------------------------------------------------------------------------- /test_cleanowners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/test_cleanowners.py -------------------------------------------------------------------------------- /test_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/test_env.py -------------------------------------------------------------------------------- /test_env_get_bool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/test_env_get_bool.py -------------------------------------------------------------------------------- /test_markdown_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/cleanowners/HEAD/test_markdown_writer.py --------------------------------------------------------------------------------