{"id":5873467,"name":"equisoft-actions/nodejs-application-metadata","ecosystem":"actions","description":"Resolve common application metadata like the application version or whether it is publishable (by our standards).\n\nGit \"history\" must be available for this action to perform well. A typical usage will look like so:\n\n```yaml\nsteps:\n  - name: Checkout\n    uses: actions/checkout@v4\n    with:\n      fetch-depth: 0\n\n  - name: Find application metadata\n    id: metadata\n    uses: .github/actions/nodejs-application-metadata\n```\n","homepage":null,"licenses":"apache-2.0","normalized_licenses":["Apache-2.0"],"repository_url":"https://github.com/equisoft-actions/nodejs-application-metadata","keywords_array":[],"namespace":"equisoft-actions","versions_count":10,"first_release_published_at":"2022-04-15T19:02:11.000Z","latest_release_published_at":"2024-03-10T19:58:13.000Z","latest_release_number":"v1.3.2","last_synced_at":"2026-03-10T18:33:28.010Z","created_at":"2023-01-14T00:44:06.560Z","updated_at":"2026-03-10T18:33:28.010Z","registry_url":"https://github.com/equisoft-actions/nodejs-application-metadata","install_command":null,"documentation_url":null,"metadata":{"name":"Resolve nodejs application metadata","description":"Resolve common application metadata like the application version or whether it is publishable (by our standards).\n\nGit \"history\" must be available for this action to perform well. A typical usage will look like so:\n\n```yaml\nsteps:\n  - name: Checkout\n    uses: actions/checkout@v4\n    with:\n      fetch-depth: 0\n\n  - name: Find application metadata\n    id: metadata\n    uses: .github/actions/nodejs-application-metadata\n```\n","inputs":{"release-branch":{"description":"Branch allowed for release. Default to the repository default branch.","required":false},"hotfix-branch-prefix":{"description":"Branch prefix allowed for hotfix. Tags on this branch will set is_hotfix to true.\nMake sure the branch is available with git fetch (if fetch-depth is unset or \u003e 0)\n```yaml\n- name: Fetch hotfix branch (for action-metadata commit check)\n  run: |\n  git fetch --no-tags --prune --depth=1000 origin '+refs/heads/release/*:refs/remotes/origin/release/*'\n```\n","required":false}},"outputs":{"publishable":{"description":"'true' if this build can publish artifacts. Only builds from the default branch can be published.\n'false' if this build should not publish its artifacts.\n","value":"${{ steps.metadata.outputs.publishable }}"},"is-hotfix":{"description":"'true' if this build is a hotfix\n","value":"${{ steps.metadata.outputs.is-hotfix }}"},"is-release":{"description":"'true' if this build should create a full release. Only 'publishable' builds can be released. A release is\n  typically triggered from a tag matching the 'v1.2.3', semver format.\n'false' if this build should not create a full release.\n","value":"${{ steps.metadata.outputs.is-release }}"},"version":{"description":"The resolved version that the current build can use.\nThe version will usually be semver compliant only for releases.\n","value":"${{ steps.metadata.outputs.version }}"},"npm-tag":{"description":"NPM tag to publish package with.\nDefined on only if publishable\nReleased semver tag are qualified as 'latest'\nDefault branch is qualified 'snapshot'\n","value":"${{ steps.metadata.outputs.npm-tag }}"}},"runs":{"using":"composite","steps":[{"name":"Find latest released version","id":"latest","uses":"oprypin/find-latest-tag@v1.1.2","with":{"repository":"${{ github.repository }}","releases-only":false,"prefix":"v","regex":"^v\\d+\\.\\d+\\.\\d+$","sort-tags":true}},{"name":"Find application metadata","id":"metadata","shell":"bash","run":"PUBLISHABLE=false\nIS_RELEASE=false\nIS_HOTFIX=false\nVERSION=0.0.0-SNAPSHOT\nDEFAULT_BRANCH=${{ github.event.repository.default_branch }}\nRELEASE_BRANCH=${{ inputs.release-branch }}\nHOTFIX_BRANCH_PREFIX=${{ inputs.hotfix-branch-prefix }}\nNPM_TAG=\n\nLATEST_VERSION=${{ steps.latest.outputs.tag }}\nLATEST_VERSION=${LATEST_VERSION#v}\nLATEST_VERSION=${LATEST_VERSION:-0.0.0}\nLATEST_VERSION_MINOR=${LATEST_VERSION%.*}\n\nif [[ \"$DEFAULT_BRANCH\" == \"\" ]]; then\n  # Schedule triggers have no `github.event` contexts\n  DEFAULT_BRANCH=\"${GITHUB_REF#refs/heads/}\"\nfi\n\nif [[ \"$RELEASE_BRANCH\" == \"\" ]]; then\n  RELEASE_BRANCH=\"$DEFAULT_BRANCH\"\nfi\n\nif [[ $GITHUB_REF =~ refs/tags/v[0-9]{1,4}\\.[0-9]{1,3}\\.[0-9]{1,3}$ ]]; then\n  VERSION=${GITHUB_REF#refs/tags/v}\n  NEXT_VERSION_MINOR=${VERSION%.*}\n  PUBLISHABLE=$(git merge-base --is-ancestor \"$GITHUB_SHA\" \"origin/$RELEASE_BRANCH\" \u0026\u0026 echo \"true\" || echo \"false\")\n  NPM_TAG=latest\n  if [[ \"$PUBLISHABLE\" == \"false\" \u0026\u0026 ! -z \"$HOTFIX_BRANCH_PREFIX\" ]]; then\n      # Maybe we have an hotfix. Must be ancestor to the corresponding stable hotfix branch\n      HOTFIX_BRANCH=\"${HOTFIX_BRANCH_PREFIX%/}/v${VERSION%.*}.x\"\n      if [[ ! -z \"$(git ls-remote --heads origin ${HOTFIX_BRANCH})\" ]]; then\n        PUBLISHABLE=$(git merge-base --is-ancestor \"$GITHUB_SHA\" \"origin/$HOTFIX_BRANCH\" \u0026\u0026 echo \"true\" || echo \"false\")\n        if [[ \"$PUBLISHABLE\" == \"true\" ]]; then\n          IS_HOTFIX=\"true\"\n          if [[ \"$NEXT_VERSION_MINOR\" == \"$LATEST_VERSION_MINOR\" ]]; then\n            NPM_TAG=latest\n          fi\n        fi\n      else\n        echo \"Hotfix branch '${HOTFIX_BRANCH}' does not exists. Could not publish tag '${VERSION}'\"\n        exit 1\n      fi\n    fi\n  IS_RELEASE=\"$PUBLISHABLE\"\nelif [[ $GITHUB_REF == refs/tags/* ]]; then\n  VERSION=$(echo ${GITHUB_REF#refs/tags/} | sed -r 's#/+#-#g')\nelif [[ $GITHUB_REF == refs/heads/* ]]; then\n  BRANCH=$(echo ${GITHUB_REF#refs/heads/} | sed -r 's#/+#-#g')\n  if [ \"$DEFAULT_BRANCH\" = \"$BRANCH\" ]; then\n    VERSION=${LATEST_VERSION%.*}.$((${LATEST_VERSION##*.} + 1))-snapshot.$(date -u \"+%Y%m%d%H%M%S\")\n    PUBLISHABLE=true\n    NPM_TAG=snapshot\n  else\n    VERSION=branch-$BRANCH\n  fi\nelif [[ $GITHUB_REF == refs/pull/* ]]; then\n  VERSION=pr-${{ github.event.number }}\nfi\n\necho \"is-release=$IS_RELEASE\" \u003e\u003e $GITHUB_OUTPUT\necho \"publishable=$PUBLISHABLE\" \u003e\u003e $GITHUB_OUTPUT\necho \"version=$VERSION\" \u003e\u003e $GITHUB_OUTPUT\necho \"is-hotfix=$IS_HOTFIX\" \u003e\u003e $GITHUB_OUTPUT\necho \"npm-tag=$NPM_TAG\" \u003e\u003e $GITHUB_OUTPUT\n\necho \"### Application metadata\" \u003e\u003e $GITHUB_STEP_SUMMARY\necho \"|Output|Value|\" \u003e\u003e $GITHUB_STEP_SUMMARY\necho \"|:---|:---|\" \u003e\u003e $GITHUB_STEP_SUMMARY\necho \"|__is-release__|$IS_RELEASE|\" \u003e\u003e $GITHUB_STEP_SUMMARY\necho \"|__publishable__|$PUBLISHABLE|\" \u003e\u003e $GITHUB_STEP_SUMMARY\necho \"|__version__|$VERSION|\" \u003e\u003e $GITHUB_STEP_SUMMARY\necho \"|__is-hotfix__|$IS_HOTFIX|\" \u003e\u003e $GITHUB_STEP_SUMMARY\necho \"|__npm-tag__|$NPM_TAG|\" \u003e\u003e $GITHUB_STEP_SUMMARY\n"}]},"default_branch":"main","path":null},"repo_metadata":{"id":64502589,"uuid":"482057788","full_name":"equisoft-actions/nodejs-application-metadata","owner":"equisoft-actions","description":null,"archived":false,"fork":false,"pushed_at":"2025-08-17T17:49:25.000Z","size":22,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-09-17T05:47:11.193Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/equisoft-actions.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-04-15T19:01:41.000Z","updated_at":"2025-08-17T17:49:28.000Z","dependencies_parsed_at":"2024-01-24T14:30:09.370Z","dependency_job_id":"fb902d7f-917a-4bd4-81af-0411414d2776","html_url":"https://github.com/equisoft-actions/nodejs-application-metadata","commit_stats":{"total_commits":11,"total_committers":5,"mean_commits":2.2,"dds":0.6363636363636364,"last_synced_commit":"9c6384d5ac3d2273569299d799d4820bcc8e6485"},"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/equisoft-actions/nodejs-application-metadata","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fnodejs-application-metadata","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fnodejs-application-metadata/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fnodejs-application-metadata/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fnodejs-application-metadata/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/equisoft-actions","download_url":"https://codeload.github.com/equisoft-actions/nodejs-application-metadata/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fnodejs-application-metadata/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275950398,"owners_count":25558388,"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-09-19T02:00:09.700Z","response_time":108,"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"},"owner_record":{"login":"equisoft-actions","name":"Equisoft Actions","uuid":"95788821","kind":"organization","description":"","email":null,"website":null,"location":"Canada","twitter":null,"company":null,"icon_url":"https://avatars.githubusercontent.com/u/95788821?v=4","repositories_count":49,"last_synced_at":"2024-04-28T02:58:16.503Z","metadata":{"has_sponsors_listing":false},"html_url":"https://github.com/equisoft-actions","funding_links":[],"total_stars":3,"followers":1,"following":0,"created_at":"2022-11-14T07:59:45.913Z","updated_at":"2024-04-28T02:58:21.320Z","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/equisoft-actions","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/equisoft-actions/repositories"},"tags":[{"name":"v1.3.2","sha":"eb90b6cf6045537c49b55191416522b3a1bfa6aa","kind":"commit","published_at":"2024-03-10T19:58:13.000Z","download_url":"https://codeload.github.com/equisoft-actions/nodejs-application-metadata/tar.gz/v1.3.2","html_url":"https://github.com/equisoft-actions/nodejs-application-metadata/releases/tag/v1.3.2","dependencies_parsed_at":"2024-07-23T04:03:27.372Z","dependency_job_id":null,"purl":"pkg:github/equisoft-actions/nodejs-application-metadata@v1.3.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fnodejs-application-metadata/tags/v1.3.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fnodejs-application-metadata/tags/v1.3.2/manifests"},{"name":"v1.3.1","sha":"0a062bf4eb1ec04d1d76235a32d11a0f6a3f7574","kind":"commit","published_at":"2024-01-24T13:06:45.000Z","download_url":"https://codeload.github.com/equisoft-actions/nodejs-application-metadata/tar.gz/v1.3.1","html_url":"https://github.com/equisoft-actions/nodejs-application-metadata/releases/tag/v1.3.1","dependencies_parsed_at":"2024-01-28T04:48:15.366Z","dependency_job_id":null,"purl":"pkg:github/equisoft-actions/nodejs-application-metadata@v1.3.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fnodejs-application-metadata/tags/v1.3.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fnodejs-application-metadata/tags/v1.3.1/manifests"},{"name":"v1.3.0","sha":"9afc4179a09f5d1309396b7d30880ad501cc20be","kind":"commit","published_at":"2023-09-11T14:28:50.000Z","download_url":"https://codeload.github.com/equisoft-actions/nodejs-application-metadata/tar.gz/v1.3.0","html_url":"https://github.com/equisoft-actions/nodejs-application-metadata/releases/tag/v1.3.0","dependencies_parsed_at":"2023-09-13T05:39:39.294Z","dependency_job_id":null,"purl":"pkg:github/equisoft-actions/nodejs-application-metadata@v1.3.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fnodejs-application-metadata/tags/v1.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fnodejs-application-metadata/tags/v1.3.0/manifests"},{"name":"v1.2.2","sha":"9c6384d5ac3d2273569299d799d4820bcc8e6485","kind":"commit","published_at":"2022-12-09T16:42:53.000Z","download_url":"https://codeload.github.com/equisoft-actions/nodejs-application-metadata/tar.gz/v1.2.2","html_url":"https://github.com/equisoft-actions/nodejs-application-metadata/releases/tag/v1.2.2","dependencies_parsed_at":"2023-06-04T19:00:59.551Z","dependency_job_id":null,"purl":"pkg:github/equisoft-actions/nodejs-application-metadata@v1.2.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fnodejs-application-metadata/tags/v1.2.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fnodejs-application-metadata/tags/v1.2.2/manifests"},{"name":"v1","sha":"0fd198e4219921edb98de5827b17531f5bae5143","kind":"commit","published_at":"2022-12-09T14:14:55.000Z","download_url":"https://codeload.github.com/equisoft-actions/nodejs-application-metadata/tar.gz/v1","html_url":"https://github.com/equisoft-actions/nodejs-application-metadata/releases/tag/v1","dependencies_parsed_at":"2023-06-04T18:14:19.899Z","dependency_job_id":null,"purl":"pkg:github/equisoft-actions/nodejs-application-metadata@v1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fnodejs-application-metadata/tags/v1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fnodejs-application-metadata/tags/v1/manifests"},{"name":"v1.2.1","sha":"0fd198e4219921edb98de5827b17531f5bae5143","kind":"commit","published_at":"2022-12-09T14:14:55.000Z","download_url":"https://codeload.github.com/equisoft-actions/nodejs-application-metadata/tar.gz/v1.2.1","html_url":"https://github.com/equisoft-actions/nodejs-application-metadata/releases/tag/v1.2.1","dependencies_parsed_at":"2023-06-04T18:14:19.218Z","dependency_job_id":null,"purl":"pkg:github/equisoft-actions/nodejs-application-metadata@v1.2.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fnodejs-application-metadata/tags/v1.2.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fnodejs-application-metadata/tags/v1.2.1/manifests"},{"name":"v1.2.0","sha":"4fa56d7b9c040e6e94c8dd87ebcac6d7d9417f96","kind":"commit","published_at":"2022-12-09T13:55:11.000Z","download_url":"https://codeload.github.com/equisoft-actions/nodejs-application-metadata/tar.gz/v1.2.0","html_url":"https://github.com/equisoft-actions/nodejs-application-metadata/releases/tag/v1.2.0","dependencies_parsed_at":"2023-06-04T18:14:19.556Z","dependency_job_id":null,"purl":"pkg:github/equisoft-actions/nodejs-application-metadata@v1.2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fnodejs-application-metadata/tags/v1.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fnodejs-application-metadata/tags/v1.2.0/manifests"},{"name":"v1.1.1","sha":"3a3a95aa40fe0e657e0614d8da1a9214e05720be","kind":"commit","published_at":"2022-07-06T14:32:42.000Z","download_url":"https://codeload.github.com/equisoft-actions/nodejs-application-metadata/tar.gz/v1.1.1","html_url":"https://github.com/equisoft-actions/nodejs-application-metadata/releases/tag/v1.1.1","dependencies_parsed_at":"2023-06-04T18:14:20.195Z","dependency_job_id":null,"purl":"pkg:github/equisoft-actions/nodejs-application-metadata@v1.1.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fnodejs-application-metadata/tags/v1.1.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fnodejs-application-metadata/tags/v1.1.1/manifests"},{"name":"v1.1.0","sha":"f35eee5d0d0778e833ba09771ed883479262f5af","kind":"tag","published_at":"2022-04-21T18:44:31.000Z","download_url":"https://codeload.github.com/equisoft-actions/nodejs-application-metadata/tar.gz/v1.1.0","html_url":"https://github.com/equisoft-actions/nodejs-application-metadata/releases/tag/v1.1.0","dependencies_parsed_at":"2023-06-04T18:14:20.512Z","dependency_job_id":null,"purl":"pkg:github/equisoft-actions/nodejs-application-metadata@v1.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fnodejs-application-metadata/tags/v1.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fnodejs-application-metadata/tags/v1.1.0/manifests"},{"name":"v1.0.0","sha":"782c55e54fbbd489a0ff22bd8d3adfd72777b173","kind":"commit","published_at":"2022-04-15T19:02:11.000Z","download_url":"https://codeload.github.com/equisoft-actions/nodejs-application-metadata/tar.gz/v1.0.0","html_url":"https://github.com/equisoft-actions/nodejs-application-metadata/releases/tag/v1.0.0","dependencies_parsed_at":"2023-06-04T18:14:20.645Z","dependency_job_id":null,"purl":"pkg:github/equisoft-actions/nodejs-application-metadata@v1.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fnodejs-application-metadata/tags/v1.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fnodejs-application-metadata/tags/v1.0.0/manifests"}]},"repo_metadata_updated_at":"2025-09-19T13:51:04.441Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":3,"rankings":{"downloads":null,"dependent_repos_count":18.035176675645697,"dependent_packages_count":0.0,"stargazers_count":48.242750752654096,"forks_count":35.087941689114245,"docker_downloads_count":null,"average":25.34146727935351},"purl":"pkg:githubactions/equisoft-actions/nodejs-application-metadata","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/equisoft-actions/nodejs-application-metadata","docker_dependents_count":null,"docker_downloads_count":null,"usage_url":"https://repos.ecosyste.ms/usage/actions/equisoft-actions/nodejs-application-metadata","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/equisoft-actions/nodejs-application-metadata/dependencies","status":null,"funding_links":[],"critical":null,"issue_metadata":{"last_synced_at":"2024-07-22T22:43:33.039Z","issues_count":2,"pull_requests_count":10,"avg_time_to_close_issue":18362.0,"avg_time_to_close_pull_request":47441.2,"issues_closed_count":1,"pull_requests_closed_count":10,"pull_request_authors_count":3,"issue_authors_count":1,"avg_comments_per_issue":0.0,"avg_comments_per_pull_request":0.0,"merged_pull_requests_count":10,"bot_issues_count":2,"bot_pull_requests_count":5,"past_year_issues_count":1,"past_year_pull_requests_count":3,"past_year_avg_time_to_close_issue":18362.0,"past_year_avg_time_to_close_pull_request":74628.0,"past_year_issues_closed_count":1,"past_year_pull_requests_closed_count":3,"past_year_pull_request_authors_count":2,"past_year_issue_authors_count":1,"past_year_avg_comments_per_issue":0.0,"past_year_avg_comments_per_pull_request":0.0,"past_year_bot_issues_count":1,"past_year_bot_pull_requests_count":2,"past_year_merged_pull_requests_count":3,"issues_url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/repositories/equisoft-actions%2Fnodejs-application-metadata/issues","maintainers":[],"active_maintainers":[]},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/equisoft-actions%2Fnodejs-application-metadata/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/equisoft-actions%2Fnodejs-application-metadata/version_numbers","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/equisoft-actions%2Fnodejs-application-metadata/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/equisoft-actions%2Fnodejs-application-metadata/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/equisoft-actions%2Fnodejs-application-metadata/codemeta","maintainers":[]}