{"id":26493759,"url":"https://github.com/gacts/install-hurl","last_synced_at":"2025-03-20T09:57:10.638Z","repository":{"id":39707268,"uuid":"491838213","full_name":"gacts/install-hurl","owner":"gacts","description":"🚀 Installs hurl binary file into your actions workflow","archived":false,"fork":false,"pushed_at":"2025-03-13T07:44:30.000Z","size":7879,"stargazers_count":9,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-13T08:26:53.730Z","etag":null,"topics":["actions","github-actions","hurl"],"latest_commit_sha":null,"homepage":"https://github.com/marketplace/actions/install-hurl-cross-platform","language":"JavaScript","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/gacts.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}},"created_at":"2022-05-13T09:32:41.000Z","updated_at":"2025-03-13T07:43:33.000Z","dependencies_parsed_at":"2024-04-01T08:26:20.332Z","dependency_job_id":"6b002d5e-00f3-4988-bc0f-fe2f3951e00c","html_url":"https://github.com/gacts/install-hurl","commit_stats":{"total_commits":61,"total_committers":3,"mean_commits":"20.333333333333332","dds":"0.34426229508196726","last_synced_commit":"dfdf6e29d1b556a9e45e66fab1639b72f0addb92"},"previous_names":[],"tags_count":17,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gacts%2Finstall-hurl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gacts%2Finstall-hurl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gacts%2Finstall-hurl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gacts%2Finstall-hurl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gacts","download_url":"https://codeload.github.com/gacts/install-hurl/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244591484,"owners_count":20477709,"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-actions","hurl"],"created_at":"2025-03-20T09:57:10.074Z","updated_at":"2025-03-20T09:57:10.630Z","avatar_url":"https://github.com/gacts.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://user-images.githubusercontent.com/7326800/170708958-a0986e48-c467-4a48-91a2-b451f5397feb.svg\" alt=\"Logo\" width=\"250\" /\u003e\n\u003c/p\u003e\n\n# Install [hurl][hurl] action\n\n![Release version][badge_release_version]\n[![Build Status][badge_build]][link_build]\n[![License][badge_license]][link_license]\n\nThis action installs [hurl][hurl] as a binary file into your workflow. It can be run on **Linux** (`ubuntu-latest`),\n**macOS** (`macos-latest`), or **Windows** (`windows-latest`).\n\n- 🚀 Hurl releases page: \u003chttps://github.com/Orange-OpenSource/hurl/releases\u003e\n\nAdditionally, this action uses the GitHub **caching mechanism** to speed up your workflow execution time!\n\n## Usage\n\n```yaml\njobs:\n  install-hurl:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: gacts/install-hurl@v1\n        #with:\n        #  disable-cache: true # disable cache usage\n        #  version: 1.2.0 # `latest` by default, but you can set a specific version to install\n\n      - run: hurl version # any hurl command can be executed\n```\n\n## Customizing\n\n### Inputs\n\nThe following inputs can be used as `step.with` keys:\n\n| Name            |   Type    |        Default        | Required | Description                                                |\n|-----------------|:---------:|:---------------------:|:--------:|------------------------------------------------------------|\n| `version`       | `string`  |       `latest`        |    no    | Hurl version to install                                    |\n| `disable-cache` | `boolean` |        `false`        |    no    | Disable cache usage                                        |\n| `github-token`  | `string`  | `${{ github.token }}` |    no    | GitHub token (for requesting the latest hurl version info) |\n\n### Outputs\n\n| Name       |   Type   | Description                  |\n|------------|:--------:|------------------------------|\n| `hurl-bin` | `string` | Path to the hurl binary file |\n\n## Releasing\n\nTo release a new version:\n\n- Build the action distribution (`make build` or `npm run build`).\n- Commit and push changes (including `dist` directory changes - this is important) to the `master|main` branch.\n- Publish the new release using the repo releases page (the git tag should follow the `vX.Y.Z` format).\n\nMajor and minor git tags (`v1` and `v1.2` if you publish a `v1.2.Z` release) will be updated automatically.\n\n\u003e [!TIP]\n\u003e Use [Dependabot](https://bit.ly/45zwLL1) to keep this action updated in your repository.\n\n## Support\n\n[![Issues][badge_issues]][link_issues]\n[![Pull Requests][badge_pulls]][link_pulls]\n\nIf you find any errors in the action, please [create an issue][link_create_issue] in this repository.\n\n## License\n\nThis is open-source software licensed under the [MIT License][link_license].\n\n[badge_build]:https://img.shields.io/github/actions/workflow/status/gacts/install-hurl/tests.yml?branch=master\u0026maxAge=30\n[badge_release_version]:https://img.shields.io/github/release/gacts/install-hurl.svg?maxAge=30\n[badge_license]:https://img.shields.io/github/license/gacts/install-hurl.svg?longCache=true\n[badge_release_date]:https://img.shields.io/github/release-date/gacts/install-hurl.svg?maxAge=180\n[badge_commits_since_release]:https://img.shields.io/github/commits-since/gacts/install-hurl/latest.svg?maxAge=45\n[badge_issues]:https://img.shields.io/github/issues/gacts/install-hurl.svg?maxAge=45\n[badge_pulls]:https://img.shields.io/github/issues-pr/gacts/install-hurl.svg?maxAge=45\n\n[link_build]:https://github.com/gacts/install-hurl/actions\n[link_license]:https://github.com/gacts/install-hurl/blob/master/LICENSE\n[link_issues]:https://github.com/gacts/install-hurl/issues\n[link_create_issue]:https://github.com/gacts/install-hurl/issues/new\n[link_pulls]:https://github.com/gacts/install-hurl/pulls\n\n[hurl]:https://hurl.dev/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgacts%2Finstall-hurl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgacts%2Finstall-hurl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgacts%2Finstall-hurl/lists"}