{"id":31642181,"url":"https://github.com/dcdavidev/namae-no-eda","last_synced_at":"2026-04-20T06:02:15.296Z","repository":{"id":316282970,"uuid":"1062647381","full_name":"dcdavidev/namae-no-eda","owner":"dcdavidev","description":"Keep your branch names tidy, like leaves on a tree","archived":false,"fork":false,"pushed_at":"2026-02-23T11:07:26.000Z","size":5249,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-03T10:47:18.602Z","etag":null,"topics":["actions","ci","ci-cd","cicd","github-actions","lint","linter","linting","linting-workflow","workflow-automation"],"latest_commit_sha":null,"homepage":"","language":"Shell","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/dcdavidev.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-23T14:31:03.000Z","updated_at":"2026-02-23T11:07:30.000Z","dependencies_parsed_at":"2025-09-23T19:21:09.110Z","dependency_job_id":null,"html_url":"https://github.com/dcdavidev/namae-no-eda","commit_stats":null,"previous_names":["dcdavidev/namae-no-eda"],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/dcdavidev/namae-no-eda","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dcdavidev%2Fnamae-no-eda","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dcdavidev%2Fnamae-no-eda/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dcdavidev%2Fnamae-no-eda/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dcdavidev%2Fnamae-no-eda/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dcdavidev","download_url":"https://codeload.github.com/dcdavidev/namae-no-eda/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dcdavidev%2Fnamae-no-eda/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32035276,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T00:18:06.643Z","status":"online","status_checked_at":"2026-04-20T02:00:06.527Z","response_time":94,"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":["actions","ci","ci-cd","cicd","github-actions","lint","linter","linting","linting-workflow","workflow-automation"],"created_at":"2025-10-07T03:57:02.038Z","updated_at":"2026-04-20T06:02:15.272Z","avatar_url":"https://github.com/dcdavidev.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align='center'\u003e\n  \u003cimg alt='namae-no-eda logo' src='./assets/logo-shrk-cmpr.png' /\u003e\n\u003c/p\u003e\n\n\u003ch1 align='center'\u003enamae-no-eda (名前の枝, \"branch name\")\u003c/h1\u003e\n\u003cp align='center'\u003eKeep your branch names tidy, like leaves on a tree\u003c/p\u003e\n\n\u003cp align='center'\u003e\n  \u003cimg alt='haiku' src='./assets/haiku-cmpr.png' width='250px' /\u003e\n\u003c/p\u003e\n\n## Example\n\nThis workflow validates branch names using `namae-no-eda`.  \nBy default it allows:  \n`feat/*, fix/*, chore/*, docs/*, refactor/*, test/*, perf/*`  \nand excludes:  \n`main, release/*`.\n\n```yaml\nname: Branch Lint\non:\n  pull_request:\n    branches:\n      - '**'\n  push:\n    branches:\n      - '**'\n\njobs:\n  branch-lint:\n    runs-on: ubuntu-latest\n    steps:\n      - name: Check out repository\n        uses: actions/checkout@v4\n\n      - name: Validate branch name\n        uses: dcdavidev/namae-no-eda@v0.0.1 # Check latest release first.\n        # with:\n        #   allowed: 'fix/*,feature/*,release/*' # Optional\n        #   exclude: 'main,develop' # Optional\n```\n\n## How it works\n\n- **allowed** _(optional)_: Comma-separated glob patterns. Defaults to `feat/*,fix/*,chore/*,docs/*,refactor/*,test/*,perf/*`.\n- **exclude** _(optional)_: Comma-separated exact branch names. Defaults to `main,release/*`.\n- **branch_name** _(optional)_: Branch to check. Defaults to the branch that triggered the workflow.\n\nIf the branch name does not match any allowed patterns and is not excluded, the action will fail the workflow.\n\n## Code Reviews\n\n![CodeRabbit Pull Request Reviews](https://img.shields.io/coderabbit/prs/github/dcdavidev/namae-no-eda?utm_source=oss\u0026utm_medium=github\u0026utm_campaign=dcdavidev%2Fnamae-no-eda\u0026labelColor=171717\u0026color=FF570A\u0026link=https%3A%2F%2Fcoderabbit.ai\u0026label=CodeRabbit+Reviews)\n\n## 📄 License\n\nThis repository is licensed under the MIT License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdcdavidev%2Fnamae-no-eda","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdcdavidev%2Fnamae-no-eda","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdcdavidev%2Fnamae-no-eda/lists"}