{"id":18932927,"url":"https://github.com/slashgear/action-check-pr-title","last_synced_at":"2025-04-14T01:26:20.874Z","repository":{"id":36983936,"uuid":"316731601","full_name":"Slashgear/action-check-pr-title","owner":"Slashgear","description":"Github action to check Pull Request title based on JS Regexp  This action in really simple and use Github Action core library base on event of your pull requests No need to install anything on your runner to use it. Simple, fast, reliable 🎉","archived":false,"fork":false,"pushed_at":"2024-06-24T13:35:45.000Z","size":17935,"stargazers_count":25,"open_issues_count":12,"forks_count":18,"subscribers_count":3,"default_branch":"main","last_synced_at":"2024-10-29T15:23:44.290Z","etag":null,"topics":["action","hacktoberfest","lint"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/Slashgear.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-11-28T12:43:16.000Z","updated_at":"2024-09-04T14:06:03.000Z","dependencies_parsed_at":"2023-01-17T11:32:30.626Z","dependency_job_id":"9d4ffade-a5da-41af-a226-d858e6cdba3a","html_url":"https://github.com/Slashgear/action-check-pr-title","commit_stats":{"total_commits":73,"total_committers":6,"mean_commits":"12.166666666666666","dds":0.6027397260273972,"last_synced_commit":"c184c1b52f5df8493bd999fb397b0d253736b9f5"},"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Slashgear%2Faction-check-pr-title","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Slashgear%2Faction-check-pr-title/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Slashgear%2Faction-check-pr-title/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Slashgear%2Faction-check-pr-title/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Slashgear","download_url":"https://codeload.github.com/Slashgear/action-check-pr-title/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248806125,"owners_count":21164457,"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","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":["action","hacktoberfest","lint"],"created_at":"2024-11-08T11:51:02.576Z","updated_at":"2025-04-14T01:26:20.839Z","avatar_url":"https://github.com/Slashgear.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003eWelcome to action-check-pr-title 👋\u003c/h1\u003e\n\u003cp\u003e\n  \u003ca href=\"https://github.com/Slashgear/action-check-pr-title/blob/main/LICENSE\" target=\"_blank\"\u003e\n    \u003cimg alt=\"License: MIT\" src=\"https://img.shields.io/badge/License-MIT-yellow.svg\" /\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://twitter.com/Slashgear\\_\" target=\"_blank\"\u003e\n    \u003cimg alt=\"Twitter: Slashgear_\" src=\"https://img.shields.io/twitter/follow/Slashgear_.svg?style=social\" /\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://github.com/Slashgear/action-check-pr-title/actions/workflows/ci.yml\" target=\"_blank\"\u003e\n    \u003cimg alt=\"Continous Integration\" src=\"https://github.com/Slashgear/action-check-pr-title/actions/workflows/ci.yml/badge.svg\" /\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n\u003e Github action to check Pull Request title based on JS Regexp\n\u003e\n\u003e This action in really simple and use Github Action core library base on event of your pull requests\n\u003e No need to install anything on your runner to use it.\n\u003e Simple, fast, reliable 🎉\n\n## Usage\n\nThis action allows you to include a title check of a pull request automatically. This action only works on `pull_request` events.\n\nTo use it, add the following steps in your workflow:\n\n### Default usage\n\n```yaml\nsteps:\n  - uses: Slashgear/action-check-pr-title@v4.3.0\n    with:\n      regexp: \"([a-z])+\" # Regex the title should match.\n```\n\n### Customize Regexp\n\n```yaml\nsteps:\n  - uses: Slashgear/action-check-pr-title@v4.3.0\n    with:\n      regexp: \"([a-z])+\" # Regex the title should match.\n      flags: \"i\" # Flags to add to the regexp\n```\n\n### Add helper message\n\n```yaml\nsteps:\n  - uses: Slashgear/action-check-pr-title@v4.3.0\n    with:\n      regexp: \"(feat|fix|docs): .++\" # Regex the title should match.\n      helpMessage: \"Example: 'feat: example of title'\"\n```\n\n## Author\n\n👤 **Slashgear**\n\n- Website: https://blog.slashgear.dev/\n- Twitter: [@Slashgear\\_](https://twitter.com/Slashgear_)\n- Github: [@Slashgear](https://github.com/Slashgear)\n\n## 🤝 Contributing\n\nContributions, issues and feature requests are welcome!\u003cbr /\u003eFeel free to check [issues page](https://github.com/Slashgear/action-check-pr-title/issues).\n\n## Show your support\n\nGive a ⭐️ if this project helped you!\n\n## 📝 License\n\nCopyright © 2020 [Slashgear](https://github.com/Slashgear).\u003cbr /\u003e\nThis project is [MIT](https://github.com/Slashgear/action-check-pr-title/blob/main/LICENSE) licensed.\n\n---\n\n_This README was generated with ❤️ by [readme-md-generator](https://github.com/kefranabg/readme-md-generator)_\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fslashgear%2Faction-check-pr-title","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fslashgear%2Faction-check-pr-title","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fslashgear%2Faction-check-pr-title/lists"}