{"id":31642191,"url":"https://github.com/flex-development/manver-action","last_synced_at":"2025-10-07T03:57:19.900Z","repository":{"id":314995689,"uuid":"1057661411","full_name":"flex-development/manver-action","owner":"flex-development","description":"Version metadata extraction utility for GitHub Actions","archived":false,"fork":false,"pushed_at":"2025-09-30T19:33:32.000Z","size":1519,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-01T03:56:50.236Z","etag":null,"topics":["actions","github","manifest","version"],"latest_commit_sha":null,"homepage":"https://github.com/marketplace/actions/manver-action","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/flex-development.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":".github/funding.yml","license":"LICENSE.md","code_of_conduct":"CODE_OF_CONDUCT.md","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},"funding":{"github":["flex-development"]}},"created_at":"2025-09-16T03:32:17.000Z","updated_at":"2025-09-30T19:33:36.000Z","dependencies_parsed_at":"2025-09-16T05:59:22.769Z","dependency_job_id":null,"html_url":"https://github.com/flex-development/manver-action","commit_stats":null,"previous_names":["flex-development/manver-action"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/flex-development/manver-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flex-development%2Fmanver-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flex-development%2Fmanver-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flex-development%2Fmanver-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flex-development%2Fmanver-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/flex-development","download_url":"https://codeload.github.com/flex-development/manver-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/flex-development%2Fmanver-action/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278717450,"owners_count":26033542,"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","status":"online","status_checked_at":"2025-10-07T02:00:06.786Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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","github","manifest","version"],"created_at":"2025-10-07T03:57:05.496Z","updated_at":"2025-10-07T03:57:19.892Z","avatar_url":"https://github.com/flex-development.png","language":"TypeScript","readme":"# manver-action\n\n[![github release](https://img.shields.io/github/v/release/flex-development/manver-action.svg?include_prereleases\\\u0026sort=semver)](https://github.com/flex-development/manver-action/releases/latest)\n[![test](https://github.com/flex-development/manver-action/actions/workflows/test.yml/badge.svg)](https://github.com/flex-development/manver-action/actions/workflows/test.yml)\n[![module type: esm](https://img.shields.io/badge/module%20type-esm-brightgreen)](https://github.com/voxpelli/badges-cjs-esm)\n[![license](https://img.shields.io/github/license/flex-development/manver-action.svg)](LICENSE.md)\n[![conventional commits](https://img.shields.io/badge/-conventional%20commits-fe5196?logo=conventional-commits\\\u0026logoColor=ffffff)](https://conventionalcommits.org)\n[![yarn](https://img.shields.io/badge/-yarn-2c8ebb?style=flat\\\u0026logo=yarn\\\u0026logoColor=ffffff)](https://yarnpkg.com)\n\nExtract version metadata\n\n## Contents\n\n- [What is this?](#what-is-this)\n- [Use](#use)\n- [Inputs](#inputs)\n  - [`branch`](#branch)\n  - [`build`](#build)\n  - [`manifest`](#manifest)\n  - [`property`](#property)\n  - [`release-branch-prefix`](#release-branch-prefix)\n  - [`tag-prefix`](#tag-prefix)\n- [Outputs](#outputs)\n  - [`build`](#build-1)\n  - [`manifest`](#manifest-1)\n  - [`tag`](#tag)\n  - [`tag-build`](#tag-build)\n- [Related](#related)\n- [Contribute](#contribute)\n\n## What is this?\n\nThis is a simple action for extracting version metadata.\n\n## Use\n\n```yaml\n---\nname: ci\non:\n  - pull_request\n  - push\n  - workflow_dispatch\njobs:\n  preflight:\n    runs-on: ubuntu-latest\n    outputs:\n      version: ${{ steps.version.outputs.build }}\n    steps:\n      - id: checkout\n        name: Checkout ${{ github.head_ref || github.ref_name }}\n        uses: actions/checkout@v5.0.0\n        with:\n          persist-credentials: false\n          ref: ${{ github.head_ref || github.ref }}\n      - id: version\n        name: Extract version metadata\n        uses: flex-development/manver-action@1.1.0\n```\n\n## Inputs\n\n### `branch`\n\n\u003e **default**: `${{ github.head_ref || github.ref_name }}`\n\nThe name of the branch to check when generating a build version (optional).\n\n### `build`\n\n\u003e **default**: `${{ github.event.pull_request.head.sha || github.sha }}`\n\nBuild metadata (optional).\n\n### `manifest`\n\n\u003e **default**: `package.json`\n\nThe path to the manifest file (optional).\n\nManifest files are expected to be compatible with [`jq`][jq].\n\n### `property`\n\n\u003e **default**: `.version`\n\nVersion property path in [`manifest`](#manifest) file (optional).\n\n### `release-branch-prefix`\n\n\u003e **default**: `release/`\n\nThe prefix used to mark release branches (optional).\n\nBuild versions generated from release branches will not have [metadata](#build) attached.\n\n### `tag-prefix`\n\nThe prefix to prepend when generating release tags (optional).\n\n## Outputs\n\n### `build`\n\nBuild version (generated from [`outputs.manifest`](#manifest-1) and [`inputs.build`](#build)).\n\n### `manifest`\n\nThe value of [`property`](#property) in the [`manifest`](#manifest) file.\n\n### `tag`\n\nRelease tag generated from [`manifest`](#manifest-1) version.\n\n### `tag-build`\n\nRelease tag generated from [`build`](#build-1) version.\n\n## Related\n\n- [`flex-development/gh-release-url-action`][gh-release-url-action] — create a url for a github release\n- [`flex-development/ghr-url-action`][ghr-url-action] — create a url for a github registry\n- [`flex-development/jq-action`][jq-action] — execute json queries with [`jq`][jq]\n- [`flex-development/npm-url-action`][npm-url-action] — create a url for the npm registry\n\n## Contribute\n\nSee [`CONTRIBUTING.md`](CONTRIBUTING.md).\n\nThis project has a [code of conduct](./CODE_OF_CONDUCT.md). By interacting with this repository, organization, or\ncommunity you agree to abide by its terms.\n\n[gh-release-url-action]: https://github.com/flex-development/gh-release-url-action\n\n[ghr-url-action]: https://github.com/flex-development/ghr-url-action\n\n[jq-action]: https://github.com/flex-development/jq-action\n\n[jq]: https://jqlang.org\n\n[npm-url-action]: https://github.com/flex-development/npm-url-action\n","funding_links":["https://github.com/sponsors/flex-development"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflex-development%2Fmanver-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fflex-development%2Fmanver-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflex-development%2Fmanver-action/lists"}