{"id":27161044,"url":"https://github.com/flownative/action-git-latest-release","last_synced_at":"2026-03-05T22:09:21.173Z","repository":{"id":142961418,"uuid":"232088609","full_name":"flownative/action-git-latest-release","owner":"flownative","description":"A Github Action which determines a release tag from a Git repository using \"latest\" tags","archived":false,"fork":false,"pushed_at":"2024-09-19T05:21:33.000Z","size":15,"stargazers_count":1,"open_issues_count":0,"forks_count":2,"subscribers_count":3,"default_branch":"main","last_synced_at":"2026-02-11T18:58:40.483Z","etag":null,"topics":["actions","git","github-actions","release-automation","semver"],"latest_commit_sha":null,"homepage":null,"language":"Shell","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/flownative.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}},"created_at":"2020-01-06T11:39:30.000Z","updated_at":"2024-09-16T05:46:18.000Z","dependencies_parsed_at":"2025-06-02T03:02:32.952Z","dependency_job_id":"b953b505-2be4-4217-bda6-505bc14aa2d1","html_url":"https://github.com/flownative/action-git-latest-release","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/flownative/action-git-latest-release","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flownative%2Faction-git-latest-release","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flownative%2Faction-git-latest-release/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flownative%2Faction-git-latest-release/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flownative%2Faction-git-latest-release/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/flownative","download_url":"https://codeload.github.com/flownative/action-git-latest-release/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flownative%2Faction-git-latest-release/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30152100,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-05T21:15:50.531Z","status":"ssl_error","status_checked_at":"2026-03-05T21:15:11.173Z","response_time":93,"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":["actions","git","github-actions","release-automation","semver"],"created_at":"2025-04-09T00:08:44.640Z","updated_at":"2026-03-05T22:09:21.138Z","avatar_url":"https://github.com/flownative.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Git Latest Release GitHub Action\n\nThis GitHub action looks for a commit tagged as \"latest\" in the current\nGit repository and tries to determine a version Git tag (one prefixed\nwith \"v\") for that commit.\n\nIn short, if you have a commit which is tagged as \"v1.2.5+3\", which is\nalso tagged as \"latest\", this action will return \"v1.2.5+3\" as its \"tag\"\noutput.\n\nAdditionally, this action also returns just the version number as a\ndedicated output. In the example above, \"version\" will contain \"1.2.5\".\n\n## Example workflow\n\n````yaml\nname: Rebuild latest release\non:\n  schedule:\n    - cron: '0 0 * * *'\n\njobs:\n  build:\n    runs-on: ubuntu-latest\n    steps:\n\n      - uses: actions/checkout@v4\n        with:\n          ref: 'latest'\n\n      - name: Determine latest released version\n        id: latest_version\n        uses: flownative/action-git-latest-release@v1\n\n      - uses: actions/checkout@v4\n        with:\n          ref: ${{ steps.latest_version.outputs.tag }}\n          fetch-depth: 100\n\n      - name: Docker meta\n        id: meta\n        uses: docker/metadata-action@v3\n        with:\n          flavor: |\n            latest=true\n          images: |\n            harbor.example.com/acme/my-app\n          tags: |\n            type=semver,pattern={{major}},value=${{ steps.latest_version.outputs.version }}\n            type=semver,pattern={{major}}.{{minor}},value=${{ steps.latest_version.outputs.version }}\n            type=semver,pattern={{version}},value=${{ steps.latest_version.outputs.version }}\n\n      - name: Set up QEMU\n        id: qemu\n        uses: docker/setup-qemu-action@v3\n\n      - name: Set up Docker Buildx\n        id: buildx\n        uses: docker/setup-buildx-action@v3\n````\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflownative%2Faction-git-latest-release","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fflownative%2Faction-git-latest-release","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflownative%2Faction-git-latest-release/lists"}