{"id":6326130,"name":"gap-actions/build-pkg-docs","ecosystem":"actions","description":"Compile documentation with or without latex","homepage":null,"licenses":"other","normalized_licenses":["Other"],"repository_url":"https://github.com/gap-actions/build-pkg-docs","keywords_array":[],"namespace":"gap-actions","versions_count":19,"first_release_published_at":"2020-11-19T13:45:09.000Z","latest_release_published_at":"2025-11-25T14:06:39.000Z","latest_release_number":"v2.3.0","last_synced_at":"2026-04-27T05:32:33.405Z","created_at":"2023-02-13T13:01:46.626Z","updated_at":"2026-04-27T05:32:33.405Z","registry_url":"https://github.com/gap-actions/build-pkg-docs","install_command":null,"documentation_url":null,"metadata":{"name":"Compile GAP package documentation","description":"Compile documentation with or without latex","inputs":{"use-latex":{"description":"if true, then install and use latex","required":false,"default":"false"},"warnings-as-errors":{"description":"If set to true then any errors produced whilst building the documentation will be treated as errors","required":false,"default":"true"}},"runs":{"using":"composite","steps":[{"name":"Validate input","shell":"bash","run":"validate_boolean() {\n  local input=$1\n  local option_name=$2\n  if ! [[ \"$input\" =~ ^(true|false)$ ]]; then\n    echo \"::error::Invalid value for option $option_name. Expected 'true' or 'false', but found '$input'\"\n    exit 1;\n  fi\n}\n\nvalidate_boolean \"${{ inputs.use-latex }}\" use-latex\nvalidate_boolean \"${{ inputs.warnings-as-errors }}\" warnings-as-errors\n"},{"name":"Install tth (for old-style documentation)","shell":"bash","run":"sudo apt-get update\nsudo apt-get install --no-install-recommends tth\n"},{"name":"Install TeX Live","if":"${{ inputs.use-latex == 'true' }}","shell":"bash","run":"sudo apt-get install --no-install-recommends texlive-latex-base texlive-latex-recommended texlive-latex-extra texlive-fonts-recommended\n"},{"name":"Check for GAP manual","shell":"bash","run":"cd $GAPROOT/doc/ref\nif [ ! -f manual.six ]; then\n  cd $GAPROOT\n  make html || :\n  # build an HTML version of the GAP reference manual to allow subsequent \n  # steps to pass when building a package manual that contains refs to\n  # the GAP reference manual.\n  # There is a caveat, though: building the GAP reference manual in turn\n  # can fail if it contains undefined references; this can happen because\n  # the GAP manual contains references to several packages and we don't\n  # install a full package distribution when running tests.\n  # See also \u003chttps://github.com/gap-actions/build-pkg-docs/issues/22\u003e.\nfi\n"},{"name":"Compile documentation","shell":"bash","env":{"SOURCE_DATE_EPOCH":0},"run":"if [ -f \"makedoc.g\" ]; then\n  $GAP -c 'PushOptions(rec(relativePath:=\"../../..\")); Read(\"makedoc.g\"); QUIT;' 2\u003e\u00261 | tee $RUNNER_TEMP/output.log\nelif [ -x \"doc/make_doc\" ]; then\n  # If the package is called \u003cpkg_name\u003e, then the \u003cdoc/make_doc\u003e script\n  # most likely assumes that it has been called from the within the\n  # \u003cpkg_name\u003e/doc folder, and that the directory hierarchy is\n  # \u003cgaproot\u003e/pkg/\u003cpkg_name\u003e/doc/make_doc, and relies on this to access\n  # several file.\n  # So we create symlinks to some potentially-useful GAP directories.\n  [ -d ../../doc ] \u0026\u0026 echo \"../../doc exists\" || ln -s $GAPROOT/doc ../../doc\n  [ -d ../../etc ] \u0026\u0026 echo \"../../etc exists\" || ln -s $GAPROOT/etc ../../etc\n  cd doc \u0026\u0026 ./make_doc  2\u003e\u00261 | tee $RUNNER_TEMP/output.log\nelif [ -f \"doc/make_doc\" ]; then\n  echo \"::error::doc/make_doc exists but is not executable!\"\n  exit 1\nelse\n  echo \"::error::no makedoc.g file or doc/make_doc script found!\"\n  exit 1\nfi\n"},{"name":"Check for warnings","if":"${{ inputs.warnings-as-errors == 'true' }}","shell":"bash","run":"if grep -i -e \"warning\\b\" $RUNNER_TEMP/output.log | grep -qiv \"LaTeX Warning: Label(s) may have changed.\"; then\n  echo \"::error::Warnings were found when building the documentation!\"\n  grep -i -e \"warning\\b\" $RUNNER_TEMP/output.log\n  exit 1\nfi\n"},{"name":"Check documentation is compiled","shell":"bash","run":"cat \u003e $RUNNER_TEMP/__DOC_CHECKER__.g \u003c\u003cEOF\n\nRead(\"PackageInfo.g\");\ndoc_infos := GAPInfo.PackageInfoCurrent.PackageDoc;\nfilenames := [ \"HTMLStart\", \"SixFile\" ${{ inputs.use-latex == 'true' \u0026\u0026 ', \"PDFFile\"' || ''  }}];\n\nif IsRecord(doc_infos) then\n  doc_infos := [doc_infos];\nfi;\n\nfor doc_info in doc_infos do\n  for filename in filenames do\n    if not IsExistingFile( doc_info.(filename) ) then\n      Exec(\n        Concatenation(\n          \"echo \\\"::error::\",\n          \"The documentation has supposedly been built, but the file \",\n          doc_info.(filename),\n          \" specified in PackageDoc.\",\n          filename,\n          \" does not exist.\",\n          \"\\\"\"\n        )\n      );\n      FORCE_QUIT_GAP(1);\n    fi;\n  od;\nod;\n\nEOF\n$GAP $RUNNER_TEMP/__DOC_CHECKER__.g -c \"QUIT;\"\n"},{"name":"Remove auxiliary files","shell":"bash","run":"find doc \\( -name '*.aux' -o -name '*.bbl' -o -name '*.blg' -o -name '*.brf' -o -name '*.idx' -o -name '*.ilg' -o -name '*.ind' -o -name '*.log' -o -name '*.out' -o -name '*.pnr' -o -name '*.toc' -o -name '*.tst' \\) -exec rm -f {} +\n"}]},"default_branch":"main","path":null},"repo_metadata":{"id":41978333,"uuid":"312250925","full_name":"gap-actions/build-pkg-docs","owner":"gap-actions","description":null,"archived":false,"fork":false,"pushed_at":"2025-11-27T23:20:59.000Z","size":42,"stargazers_count":1,"open_issues_count":4,"forks_count":3,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-11-28T15:30:54.465Z","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":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gap-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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2020-11-12T11:05:05.000Z","updated_at":"2025-11-25T14:06:43.000Z","dependencies_parsed_at":"2023-11-29T11:26:48.342Z","dependency_job_id":"5821aa5f-ad30-41a0-b3c6-04ddbfe12a75","html_url":"https://github.com/gap-actions/build-pkg-docs","commit_stats":{"total_commits":27,"total_committers":5,"mean_commits":5.4,"dds":0.6666666666666667,"last_synced_commit":"5ce91e80afe3005712d107ac824b0118fe49a793"},"previous_names":[],"tags_count":19,"template":false,"template_full_name":null,"purl":"pkg:github/gap-actions/build-pkg-docs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gap-actions%2Fbuild-pkg-docs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gap-actions%2Fbuild-pkg-docs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gap-actions%2Fbuild-pkg-docs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gap-actions%2Fbuild-pkg-docs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gap-actions","download_url":"https://codeload.github.com/gap-actions/build-pkg-docs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gap-actions%2Fbuild-pkg-docs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29558101,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-17T20:52:40.164Z","status":"ssl_error","status_checked_at":"2026-02-17T20:48:10.325Z","response_time":100,"last_error":"SSL_read: 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"},"owner_record":{"login":"gap-actions","name":"gap-actions","uuid":"74422117","kind":"organization","description":"","email":null,"website":null,"location":null,"twitter":null,"company":null,"icon_url":"https://avatars.githubusercontent.com/u/74422117?v=4","repositories_count":7,"last_synced_at":"2023-03-09T08:40:22.268Z","metadata":{"has_sponsors_listing":false},"html_url":"https://github.com/gap-actions","funding_links":[],"total_stars":null,"followers":null,"following":null,"created_at":"2022-11-18T21:59:49.341Z","updated_at":"2023-03-09T08:40:22.277Z","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gap-actions","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gap-actions/repositories"},"tags":[{"name":"v2.3.0","sha":"11f24bb4894dd1880e0ff515e96d7da5ecf97d70","kind":"commit","published_at":"2025-11-25T14:06:39.000Z","download_url":"https://codeload.github.com/gap-actions/build-pkg-docs/tar.gz/v2.3.0","html_url":"https://github.com/gap-actions/build-pkg-docs/releases/tag/v2.3.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/gap-actions/build-pkg-docs@v2.3.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gap-actions%2Fbuild-pkg-docs/tags/v2.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gap-actions%2Fbuild-pkg-docs/tags/v2.3.0/manifests"},{"name":"v2.2.0","sha":"4e39369a12a19a2efc4de99d17b386f8c27d790e","kind":"commit","published_at":"2025-11-13T13:55:55.000Z","download_url":"https://codeload.github.com/gap-actions/build-pkg-docs/tar.gz/v2.2.0","html_url":"https://github.com/gap-actions/build-pkg-docs/releases/tag/v2.2.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/gap-actions/build-pkg-docs@v2.2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gap-actions%2Fbuild-pkg-docs/tags/v2.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gap-actions%2Fbuild-pkg-docs/tags/v2.2.0/manifests"},{"name":"v1.4.0","sha":"e263d06edc98d3607650529e058d53066eebc06f","kind":"commit","published_at":"2025-09-11T13:42:22.000Z","download_url":"https://codeload.github.com/gap-actions/build-pkg-docs/tar.gz/v1.4.0","html_url":"https://github.com/gap-actions/build-pkg-docs/releases/tag/v1.4.0","dependencies_parsed_at":"2025-09-14T04:11:39.765Z","dependency_job_id":null,"purl":"pkg:github/gap-actions/build-pkg-docs@v1.4.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gap-actions%2Fbuild-pkg-docs/tags/v1.4.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gap-actions%2Fbuild-pkg-docs/tags/v1.4.0/manifests"},{"name":"v2.1.0","sha":"ec91a993396638a09336db39c37dca5defab951f","kind":"commit","published_at":"2025-09-11T11:24:58.000Z","download_url":"https://codeload.github.com/gap-actions/build-pkg-docs/tar.gz/v2.1.0","html_url":"https://github.com/gap-actions/build-pkg-docs/releases/tag/v2.1.0","dependencies_parsed_at":"2025-09-14T04:11:39.737Z","dependency_job_id":null,"purl":"pkg:github/gap-actions/build-pkg-docs@v2.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gap-actions%2Fbuild-pkg-docs/tags/v2.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gap-actions%2Fbuild-pkg-docs/tags/v2.1.0/manifests"},{"name":"v2.0.0","sha":"9fa97443c1123f43ae41d2de964dfa6c378fa62b","kind":"tag","published_at":"2025-09-04T20:29:18.000Z","download_url":"https://codeload.github.com/gap-actions/build-pkg-docs/tar.gz/v2.0.0","html_url":"https://github.com/gap-actions/build-pkg-docs/releases/tag/v2.0.0","dependencies_parsed_at":"2025-09-14T04:11:39.604Z","dependency_job_id":null,"purl":"pkg:github/gap-actions/build-pkg-docs@v2.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gap-actions%2Fbuild-pkg-docs/tags/v2.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gap-actions%2Fbuild-pkg-docs/tags/v2.0.0/manifests"},{"name":"v2","sha":"9fa97443c1123f43ae41d2de964dfa6c378fa62b","kind":"tag","published_at":"2025-09-04T20:29:11.000Z","download_url":"https://codeload.github.com/gap-actions/build-pkg-docs/tar.gz/v2","html_url":"https://github.com/gap-actions/build-pkg-docs/releases/tag/v2","dependencies_parsed_at":"2025-09-14T04:11:39.671Z","dependency_job_id":null,"purl":"pkg:github/gap-actions/build-pkg-docs@v2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gap-actions%2Fbuild-pkg-docs/tags/v2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gap-actions%2Fbuild-pkg-docs/tags/v2/manifests"},{"name":"v1.3.3","sha":"cc955c0057b3b5d3f65ee76770414e2af404ecdd","kind":"commit","published_at":"2025-08-27T14:42:08.000Z","download_url":"https://codeload.github.com/gap-actions/build-pkg-docs/tar.gz/v1.3.3","html_url":"https://github.com/gap-actions/build-pkg-docs/releases/tag/v1.3.3","dependencies_parsed_at":null,"dependency_job_id":"064de858-ebf4-4ad1-9ada-f2475ace1890","purl":"pkg:github/gap-actions/build-pkg-docs@v1.3.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gap-actions%2Fbuild-pkg-docs/tags/v1.3.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gap-actions%2Fbuild-pkg-docs/tags/v1.3.3/manifests"},{"name":"v1.3.2","sha":"0f3b28af24dc8be0eaab05041eec41cba1ab88bf","kind":"commit","published_at":"2025-07-18T06:17:59.000Z","download_url":"https://codeload.github.com/gap-actions/build-pkg-docs/tar.gz/v1.3.2","html_url":"https://github.com/gap-actions/build-pkg-docs/releases/tag/v1.3.2","dependencies_parsed_at":"2025-07-20T04:32:56.096Z","dependency_job_id":null,"purl":"pkg:github/gap-actions/build-pkg-docs@v1.3.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gap-actions%2Fbuild-pkg-docs/tags/v1.3.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gap-actions%2Fbuild-pkg-docs/tags/v1.3.2/manifests"},{"name":"v1.3.1","sha":"0b85409c9948eb22d61f8e7814263c8ac1c4bf57","kind":"commit","published_at":"2025-07-17T11:24:09.000Z","download_url":"https://codeload.github.com/gap-actions/build-pkg-docs/tar.gz/v1.3.1","html_url":"https://github.com/gap-actions/build-pkg-docs/releases/tag/v1.3.1","dependencies_parsed_at":"2025-07-20T04:32:56.052Z","dependency_job_id":null,"purl":"pkg:github/gap-actions/build-pkg-docs@v1.3.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gap-actions%2Fbuild-pkg-docs/tags/v1.3.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gap-actions%2Fbuild-pkg-docs/tags/v1.3.1/manifests"},{"name":"v1.3.0","sha":"42ab7d8fc7e7ac6360fa90ca055040ab9262a209","kind":"commit","published_at":"2025-04-09T13:48:24.000Z","download_url":"https://codeload.github.com/gap-actions/build-pkg-docs/tar.gz/v1.3.0","html_url":"https://github.com/gap-actions/build-pkg-docs/releases/tag/v1.3.0","dependencies_parsed_at":null,"dependency_job_id":"13efd538-3a81-441a-a339-d926714eff75","purl":"pkg:github/gap-actions/build-pkg-docs@v1.3.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gap-actions%2Fbuild-pkg-docs/tags/v1.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gap-actions%2Fbuild-pkg-docs/tags/v1.3.0/manifests"},{"name":"v1.2.1","sha":"22597363287958f15cf97340e7bd803b30ccd2b0","kind":"commit","published_at":"2024-09-20T08:58:05.000Z","download_url":"https://codeload.github.com/gap-actions/build-pkg-docs/tar.gz/v1.2.1","html_url":"https://github.com/gap-actions/build-pkg-docs/releases/tag/v1.2.1","dependencies_parsed_at":"2024-09-21T09:11:53.369Z","dependency_job_id":null,"purl":"pkg:github/gap-actions/build-pkg-docs@v1.2.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gap-actions%2Fbuild-pkg-docs/tags/v1.2.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gap-actions%2Fbuild-pkg-docs/tags/v1.2.1/manifests"},{"name":"v1.2.0","sha":"0a0664433618b96fcbcb0edda0befa220257d6ae","kind":"commit","published_at":"2023-11-29T10:09:40.000Z","download_url":"https://codeload.github.com/gap-actions/build-pkg-docs/tar.gz/v1.2.0","html_url":"https://github.com/gap-actions/build-pkg-docs/releases/tag/v1.2.0","dependencies_parsed_at":"2023-12-02T04:33:04.550Z","dependency_job_id":null,"purl":"pkg:github/gap-actions/build-pkg-docs@v1.2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gap-actions%2Fbuild-pkg-docs/tags/v1.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gap-actions%2Fbuild-pkg-docs/tags/v1.2.0/manifests"},{"name":"v1.1.1","sha":"5ce91e80afe3005712d107ac824b0118fe49a793","kind":"commit","published_at":"2022-04-20T20:59:47.000Z","download_url":"https://codeload.github.com/gap-actions/build-pkg-docs/tar.gz/v1.1.1","html_url":"https://github.com/gap-actions/build-pkg-docs/releases/tag/v1.1.1","dependencies_parsed_at":"2023-05-31T00:50:12.060Z","dependency_job_id":null,"purl":"pkg:github/gap-actions/build-pkg-docs@v1.1.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gap-actions%2Fbuild-pkg-docs/tags/v1.1.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gap-actions%2Fbuild-pkg-docs/tags/v1.1.1/manifests"},{"name":"v1","sha":"5ce91e80afe3005712d107ac824b0118fe49a793","kind":"commit","published_at":"2022-04-20T20:59:47.000Z","download_url":"https://codeload.github.com/gap-actions/build-pkg-docs/tar.gz/v1","html_url":"https://github.com/gap-actions/build-pkg-docs/releases/tag/v1","dependencies_parsed_at":"2023-05-31T00:50:12.486Z","dependency_job_id":null,"purl":"pkg:github/gap-actions/build-pkg-docs@v1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gap-actions%2Fbuild-pkg-docs/tags/v1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gap-actions%2Fbuild-pkg-docs/tags/v1/manifests"},{"name":"v1.0.3","sha":"187c912ab915276027247439c9bb5d7e14667bd4","kind":"commit","published_at":"2022-03-11T22:17:11.000Z","download_url":"https://codeload.github.com/gap-actions/build-pkg-docs/tar.gz/v1.0.3","html_url":"https://github.com/gap-actions/build-pkg-docs/releases/tag/v1.0.3","dependencies_parsed_at":"2023-05-31T00:50:12.858Z","dependency_job_id":null,"purl":"pkg:github/gap-actions/build-pkg-docs@v1.0.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gap-actions%2Fbuild-pkg-docs/tags/v1.0.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gap-actions%2Fbuild-pkg-docs/tags/v1.0.3/manifests"},{"name":"v1.0.2","sha":"7775e6e3d155f91a481fbc6a92262f52e8f27513","kind":"tag","published_at":"2022-01-27T08:52:10.000Z","download_url":"https://codeload.github.com/gap-actions/build-pkg-docs/tar.gz/v1.0.2","html_url":"https://github.com/gap-actions/build-pkg-docs/releases/tag/v1.0.2","dependencies_parsed_at":"2023-05-31T00:50:13.253Z","dependency_job_id":null,"purl":"pkg:github/gap-actions/build-pkg-docs@v1.0.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gap-actions%2Fbuild-pkg-docs/tags/v1.0.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gap-actions%2Fbuild-pkg-docs/tags/v1.0.2/manifests"},{"name":"v1.0.1","sha":"7041189856f7fc9fcef26e7aff4478cbcf20ae3f","kind":"tag","published_at":"2022-01-27T08:52:01.000Z","download_url":"https://codeload.github.com/gap-actions/build-pkg-docs/tar.gz/v1.0.1","html_url":"https://github.com/gap-actions/build-pkg-docs/releases/tag/v1.0.1","dependencies_parsed_at":"2023-05-31T00:50:13.783Z","dependency_job_id":null,"purl":"pkg:github/gap-actions/build-pkg-docs@v1.0.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gap-actions%2Fbuild-pkg-docs/tags/v1.0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gap-actions%2Fbuild-pkg-docs/tags/v1.0.1/manifests"},{"name":"v1.0.0","sha":"01133810fd4e916b76d3640d761f49d52cf57adc","kind":"commit","published_at":"2021-03-31T14:02:00.000Z","download_url":"https://codeload.github.com/gap-actions/build-pkg-docs/tar.gz/v1.0.0","html_url":"https://github.com/gap-actions/build-pkg-docs/releases/tag/v1.0.0","dependencies_parsed_at":"2023-05-31T00:50:13.956Z","dependency_job_id":null,"purl":"pkg:github/gap-actions/build-pkg-docs@v1.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gap-actions%2Fbuild-pkg-docs/tags/v1.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gap-actions%2Fbuild-pkg-docs/tags/v1.0.0/manifests"},{"name":"latest","sha":"f0f49c6fd0f4c0bdb1c494462dfc80c7e90d87c5","kind":"tag","published_at":"2020-11-19T13:45:09.000Z","download_url":"https://codeload.github.com/gap-actions/build-pkg-docs/tar.gz/latest","html_url":"https://github.com/gap-actions/build-pkg-docs/releases/tag/latest","dependencies_parsed_at":"2023-05-31T00:50:14.110Z","dependency_job_id":null,"purl":"pkg:github/gap-actions/build-pkg-docs@latest","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gap-actions%2Fbuild-pkg-docs/tags/latest","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gap-actions%2Fbuild-pkg-docs/tags/latest/manifests"}]},"repo_metadata_updated_at":"2026-02-17T21:07:54.370Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":94,"rankings":{"downloads":null,"dependent_repos_count":4.9310727301537005,"dependent_packages_count":0.0,"stargazers_count":34.6537791158295,"forks_count":16.13373474885121,"docker_downloads_count":null,"average":13.929646648708603},"purl":"pkg:githubactions/gap-actions/build-pkg-docs","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/gap-actions/build-pkg-docs","docker_dependents_count":null,"docker_downloads_count":null,"usage_url":"https://repos.ecosyste.ms/usage/actions/gap-actions/build-pkg-docs","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/gap-actions/build-pkg-docs/dependencies","status":null,"funding_links":[],"critical":null,"issue_metadata":{"last_synced_at":"2025-11-13T02:01:27.535Z","issues_count":11,"pull_requests_count":23,"avg_time_to_close_issue":36807122.375,"avg_time_to_close_pull_request":1439807.142857143,"issues_closed_count":8,"pull_requests_closed_count":21,"pull_request_authors_count":7,"issue_authors_count":3,"avg_comments_per_issue":2.090909090909091,"avg_comments_per_pull_request":1.0869565217391304,"merged_pull_requests_count":17,"bot_issues_count":0,"bot_pull_requests_count":0,"past_year_issues_count":4,"past_year_pull_requests_count":10,"past_year_avg_time_to_close_issue":3305179.0,"past_year_avg_time_to_close_pull_request":398859.125,"past_year_issues_closed_count":1,"past_year_pull_requests_closed_count":8,"past_year_pull_request_authors_count":3,"past_year_issue_authors_count":2,"past_year_avg_comments_per_issue":1.25,"past_year_avg_comments_per_pull_request":0.6,"past_year_bot_issues_count":0,"past_year_bot_pull_requests_count":0,"past_year_merged_pull_requests_count":7,"issues_url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/repositories/gap-actions%2Fbuild-pkg-docs/issues","maintainers":[{"login":"fingolfin","count":13,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/fingolfin"},{"login":"Joseph-Edwards","count":4,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/Joseph-Edwards"},{"login":"ssiccha","count":3,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/ssiccha"}],"active_maintainers":[{"login":"Joseph-Edwards","count":4,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/Joseph-Edwards"},{"login":"fingolfin","count":3,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/fingolfin"}]},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/gap-actions%2Fbuild-pkg-docs/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/gap-actions%2Fbuild-pkg-docs/version_numbers","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/gap-actions%2Fbuild-pkg-docs/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/gap-actions%2Fbuild-pkg-docs/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/gap-actions%2Fbuild-pkg-docs/codemeta","maintainers":[]}