{"id":15046208,"url":"https://github.com/taskmedia/action-conventional-commits","last_synced_at":"2025-06-19T07:43:04.412Z","repository":{"id":53849128,"uuid":"521252359","full_name":"taskmedia/action-conventional-commits","owner":"taskmedia","description":"Check if your PR commits matching with https://www.conventionalcommits.org/","archived":false,"fork":false,"pushed_at":"2024-10-29T14:18:25.000Z","size":3696,"stargazers_count":2,"open_issues_count":7,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-10-29T17:24:29.419Z","etag":null,"topics":["action","actions","commit","commits","conventional","conventional-commits","hacktoberfest","pr"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/taskmedia.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":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-08-04T12:11:03.000Z","updated_at":"2024-10-29T14:17:37.000Z","dependencies_parsed_at":"2023-01-04T12:30:36.679Z","dependency_job_id":"53def64e-4846-4587-9631-3a57bc0fd4d2","html_url":"https://github.com/taskmedia/action-conventional-commits","commit_stats":{"total_commits":381,"total_committers":7,"mean_commits":54.42857142857143,"dds":"0.40157480314960625","last_synced_commit":"6e0a6edaddfae1ac13548db689d8e79f3567a5d3"},"previous_names":[],"tags_count":37,"template":false,"template_full_name":"actions/typescript-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taskmedia%2Faction-conventional-commits","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taskmedia%2Faction-conventional-commits/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taskmedia%2Faction-conventional-commits/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taskmedia%2Faction-conventional-commits/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/taskmedia","download_url":"https://codeload.github.com/taskmedia/action-conventional-commits/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238284845,"owners_count":19446740,"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","actions","commit","commits","conventional","conventional-commits","hacktoberfest","pr"],"created_at":"2024-09-24T20:52:51.343Z","updated_at":"2025-02-11T11:31:38.410Z","avatar_url":"https://github.com/taskmedia.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003c!-- start title --\u003e\n\n# GitHub Action: verify conventional commits\n\n\u003c!-- end title --\u003e\n\n# Description\n\n\u003c!-- start description --\u003e\n\nCheck if commits of a PR match against the conventional commits specification.\n\nSee: https://conventionalcommits.org/\n\n\u003c!-- end description --\u003e\n\n# Usage\n\n\u003c!-- start usage --\u003e\n\n```yaml\n- uses: taskmedia/action-conventional-commits@v1.1.20\n  with:\n    # token to access GitHub API to receive PR commits\n    # Default: ${{ github.token }}\n    token: \"\"\n\n    # skip merge commits\n    # Default: true\n    skip_merge: \"\"\n\n    # skip revert commits\n    # Default: true\n    skip_revert: \"\"\n\n    # allow different types in commit message\n    # Default: fix|feat|revert\n    types: \"\"\n```\n\n\u003c!-- end usage --\u003e\n\n# Inputs\n\n\u003c!-- start inputs --\u003e\n\n| **Input**         | **Description**                                  | **Default**                    | **Required** |\n| ----------------- | ------------------------------------------------ | ------------------------------ | ------------ |\n| **`token`**       | token to access GitHub API to receive PR commits | `${{ github.token }}`          | **false**    |\n| **`skip_merge`**  | skip merge commits                               | `true`                         | **false**    |\n| **`skip_revert`** | skip revert commits                              | `true`                         | **false**    |\n| **`types`**       | allow different types in commit message          | \u003ccode\u003efix\\|feat\\|revert\u003c/code\u003e | **false**    |\n\n\u003c!-- end inputs --\u003e\n\n# Outputs\n\n\u003c!-- start outputs --\u003e\n\n| **Output**            | **Description**                                                                                 |\n| --------------------- | ----------------------------------------------------------------------------------------------- |\n| **`breaking_commit`** | indicates if a breaking commit was found                                                        |\n| **`breaking_msg`**    | returns the breaking message of the last breaking commit                                        |\n| **`commits`**         | JSON list of commits in PR                                                                      |\n| **`count_commits`**   | count of commits in PR                                                                          |\n| **`invalid_commits`** | indicates if this commit does not match with conventional commits (other values might be empty) |\n| **`version_type`**    | semantic versioning indicator (patch, minor or major)                                           |\n\n\u003c!-- end outputs --\u003e\n\n### JSON format example output `commits`\n\n```json\n[\n  {\n    \"invalid\": false,\n    \"full\": \"fix(app)!: changed something\\n\\nThis is a big change\\r\\n\\r\\nBREAKING CHANGE: API changed\",\n    \"type\": \"fix\",\n    \"breaking\": true,\n    \"scope\": \"app\",\n    \"message\": \"changed something\",\n    \"body\": \"This is a big change\",\n    \"breaking_change\": \"API changed\"\n  }\n]\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftaskmedia%2Faction-conventional-commits","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftaskmedia%2Faction-conventional-commits","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftaskmedia%2Faction-conventional-commits/lists"}