├── .github ├── FUNDING.yml └── workflows │ ├── autocommit.yml │ └── pull_request_template.md ├── .gitignore ├── LAST_UPDATED ├── LICENSE ├── README.md └── screenshoot.png /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbounted/auto-commit/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/autocommit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbounted/auto-commit/HEAD/.github/workflows/autocommit.yml -------------------------------------------------------------------------------- /.github/workflows/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbounted/auto-commit/HEAD/.github/workflows/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbounted/auto-commit/HEAD/.gitignore -------------------------------------------------------------------------------- /LAST_UPDATED: -------------------------------------------------------------------------------- 1 | 2025-11-30T21:17:43Z 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbounted/auto-commit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbounted/auto-commit/HEAD/README.md -------------------------------------------------------------------------------- /screenshoot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugbounted/auto-commit/HEAD/screenshoot.png --------------------------------------------------------------------------------