{"id":30885801,"url":"https://github.com/ophiosdev/github-action-latest-release","last_synced_at":"2026-05-08T19:33:23.599Z","repository":{"id":313412437,"uuid":"1051333470","full_name":"ophiosdev/github-action-latest-release","owner":"ophiosdev","description":"A simple Github action to get the latest release from another repository.","archived":false,"fork":false,"pushed_at":"2026-05-08T05:53:29.000Z","size":619,"stargazers_count":0,"open_issues_count":11,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-05-08T07:42:38.879Z","etag":null,"topics":["github","github-action","github-actions","latest-release","release","releases"],"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/ophiosdev.png","metadata":{"files":{"readme":"README.md","changelog":null,"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-05T20:07:38.000Z","updated_at":"2026-04-17T21:05:06.000Z","dependencies_parsed_at":"2025-09-05T22:24:31.679Z","dependency_job_id":"bffb9db4-0e89-451a-aa41-2e542ebb9a2d","html_url":"https://github.com/ophiosdev/github-action-latest-release","commit_stats":null,"previous_names":["ophiosdev/github-action-latest-release"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/ophiosdev/github-action-latest-release","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ophiosdev%2Fgithub-action-latest-release","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ophiosdev%2Fgithub-action-latest-release/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ophiosdev%2Fgithub-action-latest-release/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ophiosdev%2Fgithub-action-latest-release/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ophiosdev","download_url":"https://codeload.github.com/ophiosdev/github-action-latest-release/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ophiosdev%2Fgithub-action-latest-release/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32794715,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-08T08:22:46.396Z","status":"ssl_error","status_checked_at":"2026-05-08T08:22:45.650Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["github","github-action","github-actions","latest-release","release","releases"],"created_at":"2025-09-08T12:13:55.554Z","updated_at":"2026-05-08T19:33:23.592Z","avatar_url":"https://github.com/ophiosdev.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GitHub Action - Get Latest Release\n\nA simple Github action to get the latest release from another repository.\n\n## Configuration\n\nExample Repository - https://github.com/ophiosdev/github-action-latest-release\n\n### Inputs\n\n| Name               | Description                                                 | Required | Default | Example                                |\n| ------------------ | ----------------------------------------------------------- | -------- | ------- | -------------------------------------- |\n| repository         | The repository name in full                                 | Yes      | N/A     | ophiosdev/github-action-latest-release |\n| includeDrafts      | Whether to include draft releases. Defaults to false.       | No       | false   | \"true\"                                 |\n| includePreReleases | Whether to include pre-release versions. Defaults to false. | No       | false   | \"true\"                                 |\n| excludes           | Regular expression to match and exclude release tag names.  | No       | (empty) | \"^v0\\\\.1\"                              |\n| includes           | Regular expression to match and include release tag names.  | No       | (empty) | \"^v1\\\\.\"                               |\n| token              | The GitHub token or personal access token                   | No       | (empty) | `${{ secrets.GITHUB_TOKEN }}`          |\n\nUsing the `GITHUB_TOKEN` will avoid the action [failing due to hitting API rate limits](https://github.com/ophiosdev/github-action-latest-release/issues/24)\nfrom the IP address of the GitHub runner your action is running on. Using a `PERSONAL_ACCESS_TOKEN` is required to get the release information from a\nprivate repo. You can read about [how to create a personal access token here](https://docs.github.com/en/github/authenticating-to-github/creating-a-personal-access-token)\nand how to [add this as a repository secret here](https://docs.github.com/en/github/automating-your-workflow-with-github-actions/creating-and-using-encrypted-secrets).\n\n### Outputs\n\n| Name        | Description                         | Example                                                       |\n| ----------- | ----------------------------------- | ------------------------------------------------------------- |\n| release     | The latest release version tag      | v0.3.0                                                        |\n| id          | The latest release version id       | 12345                                                         |\n| description | The latest release description body | This is an example release                                    |\n| url         | API URL for the latest release      | https://api.github.com/repos/owner/repo/releases/12345        |\n| assetsUrl   | API URL for release assets          | https://api.github.com/repos/owner/repo/releases/12345/assets |\n\n## Usage Example\n\n```yaml\nname: Build Docker Images\non: [push, repository_dispatch]\n\njobs:\n  build:\n    name: RedisTimeSeries\n    runs-on: ubuntu-latest\n    steps:\n      - id: keydb\n        uses: ophiosdev/github-action-latest-release@master\n        with:\n          owner: JohnSully\n          repo: KeyDB\n          includeDrafts: false\n          includePreReleases: false\n          excludes: \"-beta$\"\n          includes: \"^v.*\"\n\n      - id: timeseries\n        uses: ophiosdev/github-action-latest-release@master\n        with:\n          repository: RedisTimeSeries/RedisTimeSeries\n          includeDrafts: true\n          includePreReleases: false\n      - uses: actions/checkout@v3\n\n      - uses: docker/build-push-action@v3\n        with:\n          username: ${{ secrets.DOCKER_USERNAME }}\n          password: ${{ secrets.DOCKER_PASSWORD }}\n          repository: ophiosdev/keydb-timeseries\n          dockerfile: timeseries.dockerfile\n          build_args:\n            KEY_DB_VERSION=${{ steps.keydb.outputs.release }},\n            REDIS_TIME_SERIES_VERSION=${{ steps.timeseries.outputs.release }}\n          tags:\n            latest, ${{ steps.keydb.outputs.release }}_${{\n            steps.timeseries.outputs.release }}\n```\n\nTo use the current repo:\n\n```yaml\nwith:\n  repository: ${{ github.repository }}\n```\n\nTo use authentication token:\n\n```yaml\nwith:\n  token: ${{ secrets.GITHUB_TOKEN }}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fophiosdev%2Fgithub-action-latest-release","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fophiosdev%2Fgithub-action-latest-release","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fophiosdev%2Fgithub-action-latest-release/lists"}