{"id":21697881,"url":"https://github.com/yakubique/github-releases","last_synced_at":"2026-05-10T10:03:05.293Z","repository":{"id":217254473,"uuid":"743385637","full_name":"yakubique/github-releases","owner":"yakubique","description":"Get list of GitHub releases for repository","archived":false,"fork":false,"pushed_at":"2024-02-27T12:30:53.000Z","size":188,"stargazers_count":0,"open_issues_count":1,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-01-25T14:25:26.157Z","etag":null,"topics":["github","github-actions"],"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/yakubique.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"ko_fi":"opa_oz"}},"created_at":"2024-01-15T05:49:09.000Z","updated_at":"2024-02-27T12:16:06.000Z","dependencies_parsed_at":"2024-01-15T09:11:42.727Z","dependency_job_id":"d98f1a5b-80ff-4bc7-a020-ff44307bd76a","html_url":"https://github.com/yakubique/github-releases","commit_stats":null,"previous_names":["yakubique/github-releases"],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yakubique%2Fgithub-releases","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yakubique%2Fgithub-releases/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yakubique%2Fgithub-releases/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yakubique%2Fgithub-releases/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yakubique","download_url":"https://codeload.github.com/yakubique/github-releases/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244637102,"owners_count":20485446,"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":["github","github-actions"],"created_at":"2024-11-25T19:29:55.998Z","updated_at":"2026-05-10T10:03:05.158Z","avatar_url":"https://github.com/yakubique.png","language":"TypeScript","funding_links":["https://ko-fi.com/opa_oz","https://ko-fi.com/S6S1UZ9P7"],"categories":[],"sub_categories":[],"readme":"# github-releases\n\nGet list of GitHub releases for repository\n\n[![Test `github-releases` action](https://github.com/yakubique/github-releases/actions/workflows/test-myself.yaml/badge.svg)](https://github.com/yakubique/github-releases/actions/workflows/test-myself.yaml)\n\n## Usage\n\nFor live examples, please see [actions](https://github.com/yakubique/github-releases/actions/workflows/test-myself.yaml)\n\n```yaml\nuses: yakubique/github-releases@v1.2\nenv:\n  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\nwith:\n  repository: yakubique/orogene\n```\n\n## With pre-releases\n\n```yaml\nuses: yakubique/github-releases@v1.2\nenv:\n  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\nwith:\n  repository: yakubique/orogene\n  pre: 'true'\n```\n\n## Sort versions\n\n```yaml\nuses: yakubique/github-releases@v1.2\nenv:\n  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\nwith:\n  repository: yakubique/orogene\n  sort: 'desc'\n```\n\n## Use output\n\n```yaml\nsteps:\n  - uses: yakubique/github-releases@v1.2\n    id: get_releases\n    env:\n      GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n    with:\n      repository: yakubique/orogene\n  - run: |\n      echo \"${{ steps.get_releases.outputs.releases }}\"\n```\n\n## Inputs\n\n\u003c!-- AUTO-DOC-INPUT:START - Do not remove or modify this section --\u003e\n\n|   INPUT    |  TYPE  | REQUIRED | DEFAULT |                               DESCRIPTION                               |\n|------------|--------|----------|---------|-------------------------------------------------------------------------|\n|   debug    | string |  false   |         |                                Be verbal                                |\n|  details   | string |  false   |         | Add publication date, name and prerelease \u003cbr\u003estatus to return values   |\n|    pre     | string |  false   |         |                        Include the pre-releases                         |\n| repository | string |   true   |         | Repository to get releases from (example: \"yakubique/github-releases\")  |\n|    sort    | string |  false   | `\"ASC\"` | Sort releases by publication date [\"ASC\", \u003cbr\u003e\"DESC\"] (default :\"ASC\")  |\n\n\u003c!-- AUTO-DOC-INPUT:END --\u003e\n\n\n### About `details`\n\n_Optional_ Add publication date, name and prerelease status to return values (_default_: `'false'`)\n\nIf `false` (_default_):\n\n```json\n{\n  \"releases\": [\n    \"v0.3.26\",\n    \"v0.3.22\",\n    \"v0.3.23\",\n    \"v0.3.25\",\n    \"v0.3.31\",\n    \"v0.3.34\"\n  ]\n}\n```\n\nIf `true`:\n\n```json\n{\n  \"releases\": [\n    {\n      \"name\": \"v0.3.26\",\n      \"tag_name\": \"v0.3.26\",\n      \"prerelease\": false,\n      \"published_at\": \"2023-08-07T09:43:28Z\"\n    },\n    {\n      \"name\": \"v0.3.22\",\n      \"tag_name\": \"v0.3.22\",\n      \"prerelease\": false,\n      \"published_at\": \"2023-11-12T10:58:00Z\"\n    },\n    {\n      \"name\": \"v0.3.23\",\n      \"tag_name\": \"v0.3.23\",\n      \"prerelease\": false,\n      \"published_at\": \"2023-11-12T10:59:27Z\"\n    },\n    {\n      \"name\": \"v0.3.25\",\n      \"tag_name\": \"v0.3.25\",\n      \"prerelease\": false,\n      \"published_at\": \"2023-11-12T11:01:20Z\"\n    },\n    {\n      \"name\": \"v0.3.31\",\n      \"tag_name\": \"v0.3.31\",\n      \"prerelease\": false,\n      \"published_at\": \"2023-11-12T11:17:17Z\"\n    },\n    {\n      \"name\": \"v0.3.34\",\n      \"tag_name\": \"v0.3.34\",\n      \"prerelease\": false,\n      \"published_at\": \"2023-11-12T11:21:59Z\"\n    }\n  ]\n}\n```\n\n## Outputs\n\n\u003c!-- AUTO-DOC-OUTPUT:START - Do not remove or modify this section --\u003e\n\n|  OUTPUT  |  TYPE  |      DESCRIPTION      |\n|----------|--------|-----------------------|\n| releases | string | JSON list of releases |\n\n\u003c!-- AUTO-DOC-OUTPUT:END --\u003e\n\n\n----\n\n[![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/S6S1UZ9P7)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyakubique%2Fgithub-releases","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyakubique%2Fgithub-releases","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyakubique%2Fgithub-releases/lists"}