{"id":29427558,"url":"https://github.com/neabytelab/commit-base","last_synced_at":"2025-10-07T01:58:57.729Z","repository":{"id":302471173,"uuid":"1012556796","full_name":"NeaByteLab/Commit-Base","owner":"NeaByteLab","description":"Enforces commit message and must-have file checks on every PR and push to main branch.","archived":false,"fork":false,"pushed_at":"2025-07-02T15:04:40.000Z","size":7,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-23T06:12:37.199Z","etag":null,"topics":["automation","ci","commit-lint","conventional-commits","file-check","github-actions","linter","open-source","quality-gate","repository-template","standardization","workflow"],"latest_commit_sha":null,"homepage":"https://github.com/apps/commit-base-linter","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/NeaByteLab.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-07-02T14:08:49.000Z","updated_at":"2025-07-02T15:04:43.000Z","dependencies_parsed_at":"2025-07-02T15:40:26.561Z","dependency_job_id":"9ce4a86d-3038-4f31-97a2-ca2c8ef95dc4","html_url":"https://github.com/NeaByteLab/Commit-Base","commit_stats":null,"previous_names":["neabytelab/commit-base"],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/NeaByteLab/Commit-Base","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NeaByteLab%2FCommit-Base","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NeaByteLab%2FCommit-Base/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NeaByteLab%2FCommit-Base/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NeaByteLab%2FCommit-Base/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/NeaByteLab","download_url":"https://codeload.github.com/NeaByteLab/Commit-Base/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/NeaByteLab%2FCommit-Base/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278708007,"owners_count":26031932,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-06T02:00:05.630Z","response_time":65,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["automation","ci","commit-lint","conventional-commits","file-check","github-actions","linter","open-source","quality-gate","repository-template","standardization","workflow"],"created_at":"2025-07-12T13:09:25.900Z","updated_at":"2025-10-07T01:58:57.711Z","avatar_url":"https://github.com/NeaByteLab.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Commit Base\n\n[![Install this app](https://img.shields.io/badge/GitHub%20App-Commit%20Base%20Linter-blue?logo=github)](https://github.com/apps/commit-base-linter)\n![CI](https://github.com/NeaByteLab/Commit-Base/actions/workflows/standard-repo.yml/badge.svg)\n![License](https://img.shields.io/github/license/NeaByteLab/Commit-Base)\n![Last Commit](https://img.shields.io/github/last-commit/NeaByteLab/Commit-Base)\n![Open Issues](https://img.shields.io/github/issues/NeaByteLab/Commit-Base)\n\n**Commit Base** is an automated GitHub workflow that enforces commit message standards and repository quality checks for every **Pull Request** *and* **push to the main branch**.\n\n---\n\n## ✨ Features\n\n* **Strict commit message linting** for every PR and push to main\n* **README.md, LICENSE, and .gitignore** files are required in every branch\n* **Clear error messages** for fast troubleshooting\n* **Easy integration** with any GitHub repository\n* **Fail-fast CI/CD**: no changes will be merged or pushed to main unless all checks pass\n\n---\n\n## 🚀 Quick Start\n\n1. Copy `.github/workflows/standard-repo.yml` into your repository.\n2. Ensure your project root contains `README.md`, `LICENSE`, and `.gitignore`.\n3. Create a Pull Request **or** push to the main branch — Commit Base will automatically check everything!\n\n---\n\n## 📝 Commit Message Format\n\nEvery commit must follow this pattern:\n\n```\n\u003ctype\u003e(\u003cscope\u003e): \u003csubject\u003e :\u003cemoji\u003e:\n```\n\n**Allowed types:** feat, fix, docs, refactor, chore, test, build, ci, revert\n\n**Examples:**\n\n* `feat(api): add payment endpoint :sparkles:`\n* `fix(auth): fix token refresh bug :bug:`\n* `docs(readme): update documentation :memo:`\n* `revert(login): restore previous login logic :rewind:`\n\n❗ If any commit message does not match this format, or if required files are missing, the check will fail and your PR or push will be blocked.\n\n---\n\n## ✅ Quality Gate Checks\n\n* Enforces commit message format for all PRs and pushes to main\n* Fails if `README.md`, `LICENSE`, or `.gitignore` is missing\n* Clear error messages for fast troubleshooting\n\n---\n\n\n## 💡 Advanced Usage\n\n* You can customize the workflow file to enforce more files or rules if needed.\n* Add or edit allowed commit types and scopes by adjusting the workflow regex.\n* The workflow can be extended for other branches (e.g., `dev`) by editing the trigger in the workflow YAML.\n\n---\n\n## 🙌 Contributing\n\nWant to contribute? Please check out [CONTRIBUTING.md](CONTRIBUTING.md) for commit message format and PR rules.\n\n---\n\n## 🆘 Need Help?\n\n- Found a bug or want a feature? [Open an issue](https://github.com/NeaByteLab/Commit-Base/issues)\n\n---\n\n## 📄 License\n\nMIT © [NeaByteLab](https://github.com/NeaByteLab)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fneabytelab%2Fcommit-base","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fneabytelab%2Fcommit-base","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fneabytelab%2Fcommit-base/lists"}