{"id":17087182,"url":"https://github.com/nvdaes/flexrelease","last_synced_at":"2026-01-19T09:34:29.857Z","repository":{"id":46907884,"uuid":"245815027","full_name":"nvdaes/flexRelease","owner":"nvdaes","description":null,"archived":false,"fork":false,"pushed_at":"2024-06-18T02:49:38.000Z","size":662,"stargazers_count":0,"open_issues_count":11,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-01T15:58:01.604Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/nvdaes.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":"2020-03-08T13:00:25.000Z","updated_at":"2020-03-08T13:00:30.000Z","dependencies_parsed_at":"2024-10-28T14:19:48.252Z","dependency_job_id":"9d9621db-c100-478f-a46e-c4b890b6fe8d","html_url":"https://github.com/nvdaes/flexRelease","commit_stats":{"total_commits":1,"total_committers":1,"mean_commits":1.0,"dds":0.0,"last_synced_commit":"fbd914e8f9cf237127679e36a59d5fc5b777e22a"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":"actions/javascript-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nvdaes%2FflexRelease","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nvdaes%2FflexRelease/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nvdaes%2FflexRelease/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nvdaes%2FflexRelease/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nvdaes","download_url":"https://codeload.github.com/nvdaes/flexRelease/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247773744,"owners_count":20993633,"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":[],"created_at":"2024-10-14T13:31:28.969Z","updated_at":"2026-01-19T09:34:29.326Z","avatar_url":"https://github.com/nvdaes.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://github.com/actions/javascript-action/actions\"\u003e\u003cimg alt=\"javscript-action status\" src=\"https://github.com/actions/javascript-action/workflows/units-test/badge.svg\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n# Create a JavaScript Action\n\nUse this template to bootstrap the creation of a JavaScript action.:rocket:\n\nThis template includes tests, linting, a validation workflow, publishing, and versioning guidance.  \n\nIf you are new, there's also a simpler introduction.  See the [Hello World JavaScript Action](https://github.com/actions/hello-world-javascript-action)\n\n## Create an action from this template\n\nClick the `Use this Template` and provide the new repo details for your action\n\n## Code in Master\n\nInstall the dependencies  \n```bash\n$ npm install\n```\n\nRun the tests :heavy_check_mark:  \n```bash\n$ npm test\n\n PASS  ./index.test.js\n  ✓ throws invalid number (3ms)\n  ✓ wait 500 ms (504ms)\n  ✓ test runs (95ms)\n\n...\n```\n\n## Change action.yml\n\nThe action.yml contains defines the inputs and output for your action.\n\nUpdate the action.yml with your name, description, inputs and outputs for your action.\n\nSee the [documentation](https://help.github.com/en/articles/metadata-syntax-for-github-actions)\n\n## Change the Code\n\nMost toolkit and CI/CD operations involve async operations so the action is run in an async function.\n\n```javascript\nconst core = require('@actions/core');\n...\n\nasync function run() {\n  try { \n      ...\n  } \n  catch (error) {\n    core.setFailed(error.message);\n  }\n}\n\nrun()\n```\n\nSee the [toolkit documentation](https://github.com/actions/toolkit/blob/master/README.md#packages) for the various packages.\n\n## Package for distribution\n\nGitHub Actions will run the entry point from the action.yml. Packaging assembles the code into one file that can be checked in to Git, enabling fast and reliable execution and preventing the need to check in node_modules.\n\nActions are run from GitHub repos.  Packaging the action will create a packaged action in the dist folder.\n\nRun package\n\n```bash\nnpm run package\n```\n\nSince the packaged index.js is run from the dist folder.\n\n```bash\ngit add dist\n```\n\n## Create a release branch\n\nUsers shouldn't consume the action from master since that would be latest code and actions can break compatibility between major versions.\n\nCheckin to the v1 release branch\n\n```bash\n$ git checkout -b v1\n$ git commit -a -m \"v1 release\"\n```\n\n```bash\n$ git push origin v1\n```\n\nYour action is now published! :rocket: \n\nSee the [versioning documentation](https://github.com/actions/toolkit/blob/master/docs/action-versioning.md)\n\n## Usage\n\nYou can now consume the action by referencing the v1 branch\n\n```yaml\nuses: actions/javascript-action@v1\nwith:\n  milliseconds: 1000\n```\n\nSee the [actions tab](https://github.com/actions/javascript-action/actions) for runs of this action! :rocket:\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnvdaes%2Fflexrelease","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnvdaes%2Fflexrelease","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnvdaes%2Fflexrelease/lists"}