{"id":13714653,"url":"https://github.com/VanOns/get-merged-pull-requests-action","last_synced_at":"2025-05-07T03:30:50.355Z","repository":{"id":189149772,"uuid":"678385798","full_name":"VanOns/get-merged-pull-requests-action","owner":"VanOns","description":"GitHub action that compares 2 tags and retrieves all pull requests merged between them.","archived":false,"fork":false,"pushed_at":"2025-04-21T17:27:13.000Z","size":4172,"stargazers_count":3,"open_issues_count":5,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-27T17:39:53.179Z","etag":null,"topics":["actions","github","versioning"],"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/VanOns.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","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,"zenodo":null}},"created_at":"2023-08-14T12:38:10.000Z","updated_at":"2025-04-18T12:15:40.000Z","dependencies_parsed_at":"2023-11-23T21:24:47.381Z","dependency_job_id":"df53138f-c2d3-45ad-9142-f135eb1c60c1","html_url":"https://github.com/VanOns/get-merged-pull-requests-action","commit_stats":null,"previous_names":["vanons/get-merged-pull-requests-action"],"tags_count":13,"template":false,"template_full_name":"actions/typescript-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VanOns%2Fget-merged-pull-requests-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VanOns%2Fget-merged-pull-requests-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VanOns%2Fget-merged-pull-requests-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/VanOns%2Fget-merged-pull-requests-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/VanOns","download_url":"https://codeload.github.com/VanOns/get-merged-pull-requests-action/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252806366,"owners_count":21807193,"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":["actions","github","versioning"],"created_at":"2024-08-03T00:00:35.606Z","updated_at":"2025-05-07T03:30:50.326Z","avatar_url":"https://github.com/VanOns.png","language":"TypeScript","funding_links":[],"categories":["Community Resources"],"sub_categories":["Pull Requests"],"readme":"\u003cp align=\"center\"\u003e\u003cimg src=\"art/social-card.png\" alt=\"Social card of GitHub Action: Get merged pull requests\"\u003e\u003c/p\u003e\n\n\u003c!-- start title --\u003e\n\n# GitHub Action: Get Merged Pull Requests\n\n\u003c!-- end title --\u003e\n\n[![Test build](https://github.com/VanOns/get-merged-pull-requests-action/actions/workflows/test.yml/badge.svg)](https://github.com/VanOns/get-merged-pull-requests-action/actions/workflows/test.yml)\n[![GPL-3.0 License](https://img.shields.io/github/license/VanOns/get-merged-pull-requests-action)](https://github.com/VanOns/get-merged-pull-requests-action/blob/main/LICENSE)\n[![GitHub Release](https://img.shields.io/github/v/release/VanOns/get-merged-pull-requests-action?sort=semver)](https://github.com/VanOns/get-merged-pull-requests-action/releases/latest)\n\n\u003c!-- start description --\u003e\n\nCompare two tags and retrieve all the pull requests merged between them.\n\n\u003c!-- end description --\u003e\n\n## Quick start\n\n### Usage\n\n\u003c!-- start usage --\u003e\n\n```yaml\n- uses: VanOns/get-merged-pull-requests-action@v1\n  with:\n    # The GitHub token to use.\n    github_token: \"\"\n\n    # The repository to use. Defaults to current repository. Expected format:\n    # `owner/repo`.\n    repo: \"\"\n\n    # The current tag to use. Defaults to current/latest tag.\n    current_tag: \"\"\n\n    # The previous tag to use. Defaults to one tag before the current tag.\n    previous_tag: \"\"\n\n    # The regex to use to determine if a commit is a pull request merge commit. This\n    # is checked against a commit's title. Default regex: `^Merge pull request.*`.\n    commit_is_pull_request_regex: \"\"\n\n    # Whether to apply `commit_is_pull_request_regex` to the commits.\n    # Default: false\n    apply_commit_is_pull_request_regex: \"\"\n\n    # The regex to use if you want to filter the pull requests. This is checked\n    # against a pull request's title. Example regex: `^\\[Feat].*`.\n    pull_request_regex: \"\"\n\n    # Limit the number of commits to retrieve.\n    commit_limit: \"\"\n```\n\n\u003c!-- end usage --\u003e\n\n### Inputs\n\n\u003c!-- start inputs --\u003e\n\n| **Input**                                | **Description**                                                                                                                                             | **Default**  | **Required** |\n|------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------|--------------|\n| **`github_token`**                       | The GitHub token to use.                                                                                                                                    |              | **true**     |\n| **`repo`**                               | The repository to use. Defaults to current repository. Expected format: `owner/repo`.                                                                       |              | **false**    |\n| **`current_tag`**                        | The current tag to use. Defaults to current/latest tag.                                                                                                     |              | **false**    |\n| **`previous_tag`**                       | The previous tag to use. Defaults to one tag before the current tag.                                                                                        |              | **false**    |\n| **`commit_is_pull_request_regex`**       | The regex to use to determine if a commit is a pull request merge commit. This is checked against a commit's title. Default regex: `^Merge pull request.*`. |              | **false**    |\n| **`apply_commit_is_pull_request_regex`** | Whether to apply `commit_is_pull_request_regex` to the commits.                                                                                             |              | **false**    |\n| **`pull_request_regex`**                 | The regex to use if you want to filter the pull requests. This is checked against a pull request's title. Example regex: `^\\[Feat].*`.                      |              | **false**    |\n| **`commit_limit`**                       | Limit the number of commits to retrieve.                                                                                                                    | `250`        | **false**    |\n\n\u003c!-- end inputs --\u003e\n\n## Documentation\n\nPlease see the [documentation] for detailed information about installation and usage.\n\n## Contributing\n\nPlease see [contributing] for more information about how you can contribute.\n\n## Changelog\n\nPlease see [changelog] for more information about what has changed recently.\n\n## Upgrading\n\nPlease see [upgrading] for more information about how to upgrade.\n\n## Security\n\nPlease see [security] for more information about how we deal with security.\n\n## Credits\n\nWe would like to thank the following contributors for their contributions to this project:\n\n- [All Contributors][all-contributors]\n\n## License\n\nThe scripts and documentation in this project are released under the [MIT License][license].\n\n---\n\n\u003cp align=\"center\"\u003e\u003ca href=\"https://van-ons.nl/\" target=\"_blank\"\u003e\u003cimg src=\"https://opensource.van-ons.nl/files/cow.png\" width=\"50\" alt=\"Logo of Van Ons\"\u003e\u003c/a\u003e\u003c/p\u003e\n\n[documentation]: docs\n[contributing]: CONTRIBUTING.md\n[changelog]: CHANGELOG.md\n[upgrading]: UPGRADING.md\n[security]: SECURITY.md\n[email]: mailto:opensource@van-ons.nl\n[all-contributors]: ../../contributors\n[license]: LICENSE.md\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FVanOns%2Fget-merged-pull-requests-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FVanOns%2Fget-merged-pull-requests-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FVanOns%2Fget-merged-pull-requests-action/lists"}