{"id":5803754,"name":"insightsengineering/r-pkgdown-multiversion","ecosystem":"actions","description":"Generates multisite R documentation created with pkgdown.","homepage":"https://github.com/marketplace/actions/r-pkgdown-multi-version-docs","licenses":"apache-2.0","normalized_licenses":["Apache-2.0"],"repository_url":"https://github.com/insightsengineering/r-pkgdown-multiversion","keywords_array":["github-actions","pkgdown","r"],"namespace":"insightsengineering","versions_count":26,"first_release_published_at":"2021-11-23T13:32:27.000Z","latest_release_published_at":"2025-08-25T15:18:52.000Z","latest_release_number":"v3.0.5","last_synced_at":"2026-05-31T13:33:35.419Z","created_at":"2023-01-04T14:42:15.669Z","updated_at":"2026-05-31T13:33:35.420Z","registry_url":"https://github.com/insightsengineering/r-pkgdown-multiversion","install_command":null,"documentation_url":null,"metadata":{"name":"R pkgdown Multi Version docs","author":"Insights Engineering","description":"Generates multisite R documentation created with pkgdown.","branding":{"icon":"anchor","color":"orange"},"inputs":{"path":{"description":"Path to package's root","required":false,"default":"."},"default-landing-page":{"description":"The default branch or tag on gh-pages that corresponds to the landing page.\nFor instance, if your root index page on gh-pages is built using the 'main'\nbranch, then the root page of the site will correspond to this page.\nIf 'latest-tag' is selected, then the latest version will become the default.\n","default":"main","required":false},"branches-or-tags-to-list":{"description":"Which branches or tags should be listed under the 'Versions' dropdown menu on the landing page? This input should be a regular expression in R.","required":false,"default":"^main$|^devel$|^prerelease$|^latest-tag$|^release-candidate$|^develop$|^v([0-9]+\\\\.)?([0-9]+\\\\.)?([0-9]+)|^v([0-9]+\\\\.)?([0-9]+\\\\.)?([0-9]+)(-rc[0-9]+)$"},"refs-order":{"description":"The order in which refs should appear in the drop-down list. Versions not in the vector\nwill appear below refs listed here.\nIf docs have never been generated for the ref, the ref will not appear in the\ndrop-down. Similarly, if docs have been generated for the ref, but the ref is not\nlisted in the vector, it will not appear in the drop-down.\nExample (the refs on the list should be separated by space):\nmain devel prerelease latest-tag\n","required":false,"default":"main devel prerelease latest-tag"},"latest-tag-alt-name":{"description":"An alternate name for the 'latest-tag' item","required":false,"default":""},"release-candidate-alt-name":{"description":"An alternate name for the 'release-candidate' item","required":false,"default":""}},"runs":{"using":"composite","steps":[{"name":"Create copy of latest tag","run":"cd ${{ inputs.path }}\nset +o pipefail\nlatest_tag=\"v$(ls -1d * \\\n  | grep -E \"^v([0-9]+\\.)?([0-9]+\\.)?([0-9]+)$\" \\\n  | sed 's/^v//' \\\n  | sort -t \".\" -k1,1n -k2,2n -k3,3n \\\n  | tail -1)\"\nlatest_rc_tag=\"v$(ls -1d * \\\n  | grep -E \"^v([0-9]+\\.)?([0-9]+\\.)?([0-9]+)(-rc[0-9]+)$\" \\\n  | sed 's/^v//' \\\n  | sort -t \".\" -k1,1n -k2,2n -k3,3n \\\n  | tail -1)\"\nset -o pipefail\nrm -rf latest-tag\nrm -rf release-candidate\n[[ \"${latest_tag}\" != \"\" ]] \\\n  \u0026\u0026 ( \\\n    cp -r \"${latest_tag}\" latest-tag \\\n    \u0026\u0026 perl -p -i -e \\\n      \"s@${latest_tag}@latest-tag@g\" \\\n      latest-tag/search.json\n  ) \\\n  || echo \"No latest tag found, not creating directory for latest-tag\"\n[[ \"${latest_rc_tag}\" != \"\" ]] \\\n  \u0026\u0026 ( \\\n    cp -r \"${latest_rc_tag}\" release-candidate \\\n    \u0026\u0026 perl -p -i -e \\\n      \"s@${latest_rc_tag}@release-candidate@g\" \\\n      release-candidate/search.json\n  ) \\\n  || echo \"No release candidate tag found, not creating directory for release-candidate\"\nif [[ \"${{ inputs.latest-tag-alt-name }}\" != \"\" \u0026\u0026 -d latest-tag ]]\nthen {\n  rm -rf ${{ inputs.latest-tag-alt-name }}\n  cp -r latest-tag ${{ inputs.latest-tag-alt-name }}\n  perl -p -i -e \\\n    \"s@latest-tag@${{ inputs.latest-tag-alt-name }}@g\" \\\n    ${{ inputs.latest-tag-alt-name }}/search.json\n}\nfi\nif [[ \"${{ inputs.release-candidate-alt-name }}\" != \"\" \u0026\u0026 -d release-candidate ]]\nthen {\n  rm -rf ${{ inputs.release-candidate-alt-name }}\n  cp -r release-candidate ${{ inputs.release-candidate-alt-name }}\n  perl -p -i -e \\\n    \"s@release-candidate@${{ inputs.release-candidate-alt-name }}@g\" \\\n    ${{ inputs.release-candidate-alt-name }}/search.json\n}\nfi\n","shell":"bash"},{"name":"Create redirect page","run":"cd ${{ inputs.path }}\ncp \"${GITHUB_ACTION_PATH}/redirect.html\" index.html\nperl -p -i -e \\\n  \"s@DEFAULT_LANDING_PAGE@${{ inputs.default-landing-page }}@g\" \\\n  index.html\nperl -p -i -e \\\n  \"s@REPOSITORY@${{ github.event.repository.name }}@g\" \\\n  index.html\nperl -p -i -e \\\n  \"s@OWNER@${{ github.repository_owner }}@g\" \\\n  index.html\ntouch .nojekyll\n","shell":"bash"},{"name":"Create root-level pkgdown.yml","run":"cd ${{ inputs.path }}\nDEFAULT_LANDING_PAGE=\"${{ inputs.default-landing-page }}\"\nif [ -f $DEFAULT_LANDING_PAGE/pkgdown.yml ]\nthen {\n  cp $DEFAULT_LANDING_PAGE/pkgdown.yml .\n  sed -i -E \\\n    \"/$DEFAULT_LANDING_PAGE/! s/(\\/(reference|articles))/\\/$DEFAULT_LANDING_PAGE\\1/g\" \\\n    pkgdown.yml\n}\nfi\n","shell":"bash"},{"name":"Run multi-version site creation script","run":"pip install lxml packaging\npython ${GITHUB_ACTION_PATH}/core.py ${{ github.event.repository.name }}/ \\\n  --pattern '${{ inputs.branches-or-tags-to-list }}' \\\n  --refs_order '${{ inputs.refs-order }}' \\\n  --base_url 'https://${{ github.repository_owner }}.github.io/${{ github.event.repository.name }}/'\n","shell":"bash"},{"name":"Commit and push changes","uses":"stefanzweifel/git-auto-commit-action@v5","with":{"commit_message":"[actions skip] Built site for ${{ github.event.repository.name }}@${{ github.sha }}","repository":"${{ inputs.path }}","commit_user_name":"github-actions","commit_user_email":"41898282+github-actions[bot]","branch":"gh-pages","create_branch":true}}]},"default_branch":"main","path":null},"repo_metadata":{"id":37630509,"uuid":"418905033","full_name":"insightsengineering/r-pkgdown-multiversion","owner":"insightsengineering","description":"Github Action to generate multiple versions of pkgdown docs for R packages","archived":false,"fork":false,"pushed_at":"2025-08-25T15:25:55.000Z","size":108,"stargazers_count":5,"open_issues_count":2,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-10-28T23:38:30.227Z","etag":null,"topics":["github-actions","pkgdown","r"],"latest_commit_sha":null,"homepage":"https://github.com/marketplace/actions/r-pkgdown-multi-version-docs","language":"Python","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/insightsengineering.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":".github/CODEOWNERS","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":{"custom":["https://pharmaverse.org"]}},"created_at":"2021-10-19T12:00:45.000Z","updated_at":"2025-10-06T09:37:17.000Z","dependencies_parsed_at":"2025-10-28T23:33:26.751Z","dependency_job_id":null,"html_url":"https://github.com/insightsengineering/r-pkgdown-multiversion","commit_stats":{"total_commits":36,"total_committers":8,"mean_commits":4.5,"dds":0.25,"last_synced_commit":"5d818561709f56fe1980139242594edcebd94a2a"},"previous_names":[],"tags_count":26,"template":false,"template_full_name":null,"purl":"pkg:github/insightsengineering/r-pkgdown-multiversion","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/insightsengineering","download_url":"https://codeload.github.com/insightsengineering/r-pkgdown-multiversion/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/sbom","scorecard":{"id":489682,"data":{"date":"2025-08-11","repo":{"name":"github.com/insightsengineering/r-pkgdown-multiversion","commit":"0eed4fe6a79014ee44db17df2689e33b40dfdf93"},"scorecard":{"version":"v5.2.1-40-gf6ed084d","commit":"f6ed084d17c9236477efd66e5b258b9d4cc7b389"},"score":5.1,"checks":[{"name":"Maintained","score":1,"reason":"2 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 1","details":null,"documentation":{"short":"Determines if the project is \"actively maintained\".","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#maintained"}},{"name":"Code-Review","score":5,"reason":"Found 14/24 approved changesets -- score normalized to 5","details":null,"documentation":{"short":"Determines if the project requires human code review before pull requests (aka merge requests) are merged.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#code-review"}},{"name":"Binary-Artifacts","score":10,"reason":"no binaries found in the repo","details":null,"documentation":{"short":"Determines if the project has generated executable (binary) artifacts in the source repository.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#binary-artifacts"}},{"name":"Dangerous-Workflow","score":10,"reason":"no dangerous workflow patterns detected","details":null,"documentation":{"short":"Determines if the project's GitHub Action workflows avoid dangerous patterns.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#dangerous-workflow"}},{"name":"Packaging","score":-1,"reason":"packaging workflow not detected","details":["Warn: no GitHub/GitLab publishing workflow detected."],"documentation":{"short":"Determines if the project is published as a package that others can easily download, install, easily update, and uninstall.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#packaging"}},{"name":"Pinned-Dependencies","score":0,"reason":"dependency not pinned by hash detected -- score normalized to 0","details":["Warn: third-party GitHubAction not pinned by hash: .github/workflows/cla.yaml:18: update your workflow using https://app.stepsecurity.io/secureworkflow/insightsengineering/r-pkgdown-multiversion/cla.yaml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/linter.yaml:20: update your workflow using https://app.stepsecurity.io/secureworkflow/insightsengineering/r-pkgdown-multiversion/linter.yaml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/linter.yaml:25: update your workflow using https://app.stepsecurity.io/secureworkflow/insightsengineering/r-pkgdown-multiversion/linter.yaml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/linter.yaml:48: update your workflow using https://app.stepsecurity.io/secureworkflow/insightsengineering/r-pkgdown-multiversion/linter.yaml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/short-tagging.yaml:12: update your workflow using https://app.stepsecurity.io/secureworkflow/insightsengineering/r-pkgdown-multiversion/short-tagging.yaml/main?enable=pin","Info:   0 out of   1 GitHub-owned GitHubAction dependencies pinned","Info:   0 out of   4 third-party GitHubAction dependencies pinned"],"documentation":{"short":"Determines if the project has declared and pinned the dependencies of its build process.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#pinned-dependencies"}},{"name":"Token-Permissions","score":0,"reason":"detected GitHub workflow tokens with excessive permissions","details":["Warn: jobLevel 'statuses' permission set to 'write': .github/workflows/linter.yaml:15","Warn: jobLevel 'contents' permission set to 'write': .github/workflows/linter.yaml:13","Warn: no topLevel permission defined: .github/workflows/cla.yaml:1","Warn: no topLevel permission defined: .github/workflows/linter.yaml:1","Warn: no topLevel permission defined: .github/workflows/short-tagging.yaml:1"],"documentation":{"short":"Determines if the project's workflows follow the principle of least privilege.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#token-permissions"}},{"name":"CII-Best-Practices","score":0,"reason":"no effort to earn an OpenSSF best practices badge detected","details":null,"documentation":{"short":"Determines if the project has an OpenSSF (formerly CII) Best Practices Badge.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#cii-best-practices"}},{"name":"Fuzzing","score":0,"reason":"project is not fuzzed","details":["Warn: no fuzzer integrations found"],"documentation":{"short":"Determines if the project uses fuzzing.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#fuzzing"}},{"name":"Vulnerabilities","score":10,"reason":"0 existing vulnerabilities detected","details":null,"documentation":{"short":"Determines if the project has open, known unfixed vulnerabilities.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#vulnerabilities"}},{"name":"License","score":10,"reason":"license file detected","details":["Info: project has a license file: LICENSE:0","Info: FSF or OSI recognized license: Apache License 2.0: LICENSE:0"],"documentation":{"short":"Determines if the project has defined a license.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#license"}},{"name":"Signed-Releases","score":-1,"reason":"no releases found","details":null,"documentation":{"short":"Determines if the project cryptographically signs release artifacts.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#signed-releases"}},{"name":"Security-Policy","score":10,"reason":"security policy file detected","details":["Info: security policy file detected: github.com/insightsengineering/.github/SECURITY.md:1","Info: Found linked content: github.com/insightsengineering/.github/SECURITY.md:1","Info: Found disclosure, vulnerability, and/or timelines in security policy: github.com/insightsengineering/.github/SECURITY.md:1","Info: Found text in security policy: github.com/insightsengineering/.github/SECURITY.md:1"],"documentation":{"short":"Determines if the project has published a security policy.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#security-policy"}},{"name":"Branch-Protection","score":-1,"reason":"internal error: error during branchesHandler.setup: internal error: githubv4.Query: Resource not accessible by integration","details":null,"documentation":{"short":"Determines if the default and release branches are protected with GitHub's branch protection settings.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#branch-protection"}},{"name":"SAST","score":0,"reason":"SAST tool is not run on all commits -- score normalized to 0","details":["Warn: 0 commits out of 24 are checked with a SAST tool"],"documentation":{"short":"Determines if the project uses static code analysis.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#sast"}}]},"last_synced_at":"2025-08-19T18:44:47.270Z","repository_id":37630509,"created_at":"2025-08-19T18:44:47.270Z","updated_at":"2025-08-19T18:44:47.270Z"},"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":281533483,"owners_count":26517826,"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-28T02:00:06.022Z","response_time":60,"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":"insightsengineering","name":"Roche/Genentech - Insights Engineering","uuid":"80070020","kind":"organization","description":"Roche/Genentech - Insights Engineering","email":null,"website":"https://code4life.roche.com/","location":"Switzerland","twitter":null,"company":null,"icon_url":"https://avatars.githubusercontent.com/u/80070020?v=4","repositories_count":53,"last_synced_at":"2023-03-03T20:40:49.129Z","metadata":{"has_sponsors_listing":false,"funding":{"custom":["https://pharmaverse.org"]}},"html_url":"https://github.com/insightsengineering","funding_links":["https://pharmaverse.org"],"total_stars":null,"followers":null,"following":null,"created_at":"2022-11-14T05:24:25.614Z","updated_at":"2023-03-03T20:40:49.285Z","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/insightsengineering","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/insightsengineering/repositories"},"tags":[{"name":"v3.0.5","sha":"f7e9f5f9415a37cf58da80fbbf5a3443c7bb30ae","kind":"commit","published_at":"2025-08-25T15:18:52.000Z","download_url":"https://codeload.github.com/insightsengineering/r-pkgdown-multiversion/tar.gz/v3.0.5","html_url":"https://github.com/insightsengineering/r-pkgdown-multiversion/releases/tag/v3.0.5","dependencies_parsed_at":null,"dependency_job_id":"e659e5f6-46b3-4ca7-b1d9-ec69b7f7bc1c","purl":"pkg:github/insightsengineering/r-pkgdown-multiversion@v3.0.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v3.0.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v3.0.5/manifests"},{"name":"v3.0.4","sha":"0eed4fe6a79014ee44db17df2689e33b40dfdf93","kind":"commit","published_at":"2025-06-13T07:25:01.000Z","download_url":"https://codeload.github.com/insightsengineering/r-pkgdown-multiversion/tar.gz/v3.0.4","html_url":"https://github.com/insightsengineering/r-pkgdown-multiversion/releases/tag/v3.0.4","dependencies_parsed_at":"2025-07-04T05:13:07.024Z","dependency_job_id":null,"purl":"pkg:github/insightsengineering/r-pkgdown-multiversion@v3.0.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v3.0.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v3.0.4/manifests"},{"name":"v3.0.3","sha":"9b627ba9e360acb73100ae89de49d9721f8dcb0d","kind":"commit","published_at":"2025-01-09T15:14:57.000Z","download_url":"https://codeload.github.com/insightsengineering/r-pkgdown-multiversion/tar.gz/v3.0.3","html_url":"https://github.com/insightsengineering/r-pkgdown-multiversion/releases/tag/v3.0.3","dependencies_parsed_at":"2025-01-12T05:12:34.832Z","dependency_job_id":null,"purl":"pkg:github/insightsengineering/r-pkgdown-multiversion@v3.0.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v3.0.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v3.0.3/manifests"},{"name":"v3.0.2","sha":"374687ba483ad6f49723ba1411e7e4b0470709e1","kind":"commit","published_at":"2024-11-04T15:28:54.000Z","download_url":"https://codeload.github.com/insightsengineering/r-pkgdown-multiversion/tar.gz/v3.0.2","html_url":"https://github.com/insightsengineering/r-pkgdown-multiversion/releases/tag/v3.0.2","dependencies_parsed_at":"2024-11-07T07:35:19.790Z","dependency_job_id":null,"purl":"pkg:github/insightsengineering/r-pkgdown-multiversion@v3.0.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v3.0.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v3.0.2/manifests"},{"name":"v3.0.1","sha":"5ef4eea6cd13f172df7f237fb8441a7f4e85cccb","kind":"commit","published_at":"2024-10-29T12:09:43.000Z","download_url":"https://codeload.github.com/insightsengineering/r-pkgdown-multiversion/tar.gz/v3.0.1","html_url":"https://github.com/insightsengineering/r-pkgdown-multiversion/releases/tag/v3.0.1","dependencies_parsed_at":"2024-11-03T06:18:21.239Z","dependency_job_id":null,"purl":"pkg:github/insightsengineering/r-pkgdown-multiversion@v3.0.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v3.0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v3.0.1/manifests"},{"name":"v3","sha":"f2d771591dfaf0708c9e5026f5486e99d09ccf31","kind":"commit","published_at":"2024-10-22T13:44:41.000Z","download_url":"https://codeload.github.com/insightsengineering/r-pkgdown-multiversion/tar.gz/v3","html_url":"https://github.com/insightsengineering/r-pkgdown-multiversion/releases/tag/v3","dependencies_parsed_at":null,"dependency_job_id":"19ecaf31-c9ee-4cf2-b2a2-79f48ffa60f0","purl":"pkg:github/insightsengineering/r-pkgdown-multiversion@v3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v3/manifests"},{"name":"v3.0.0","sha":"f2d771591dfaf0708c9e5026f5486e99d09ccf31","kind":"commit","published_at":"2024-10-22T13:44:41.000Z","download_url":"https://codeload.github.com/insightsengineering/r-pkgdown-multiversion/tar.gz/v3.0.0","html_url":"https://github.com/insightsengineering/r-pkgdown-multiversion/releases/tag/v3.0.0","dependencies_parsed_at":"2024-10-24T15:54:49.409Z","dependency_job_id":null,"purl":"pkg:github/insightsengineering/r-pkgdown-multiversion@v3.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v3.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v3.0.0/manifests"},{"name":"v2.4.6","sha":"abaaa32f84ba9f721c706dd8d6532042e9d19db4","kind":"commit","published_at":"2024-10-02T12:17:44.000Z","download_url":"https://codeload.github.com/insightsengineering/r-pkgdown-multiversion/tar.gz/v2.4.6","html_url":"https://github.com/insightsengineering/r-pkgdown-multiversion/releases/tag/v2.4.6","dependencies_parsed_at":"2024-10-05T05:31:14.345Z","dependency_job_id":null,"purl":"pkg:github/insightsengineering/r-pkgdown-multiversion@v2.4.6","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v2.4.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v2.4.6/manifests"},{"name":"v2.4.5","sha":"2d45ef0aa8822b4b794ee01f41a4c8a7d72b1408","kind":"commit","published_at":"2024-10-02T10:34:35.000Z","download_url":"https://codeload.github.com/insightsengineering/r-pkgdown-multiversion/tar.gz/v2.4.5","html_url":"https://github.com/insightsengineering/r-pkgdown-multiversion/releases/tag/v2.4.5","dependencies_parsed_at":"2024-10-05T05:31:14.344Z","dependency_job_id":null,"purl":"pkg:github/insightsengineering/r-pkgdown-multiversion@v2.4.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v2.4.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v2.4.5/manifests"},{"name":"v2.4.4","sha":"29bf98c814394721361f037be2958716ab431e7c","kind":"commit","published_at":"2024-02-12T15:28:08.000Z","download_url":"https://codeload.github.com/insightsengineering/r-pkgdown-multiversion/tar.gz/v2.4.4","html_url":"https://github.com/insightsengineering/r-pkgdown-multiversion/releases/tag/v2.4.4","dependencies_parsed_at":"2024-02-14T07:19:02.792Z","dependency_job_id":null,"purl":"pkg:github/insightsengineering/r-pkgdown-multiversion@v2.4.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v2.4.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v2.4.4/manifests"},{"name":"v2.4.3","sha":"1d3cc4a268a520d802555f817140a73ba074e0a3","kind":"commit","published_at":"2024-02-12T15:11:09.000Z","download_url":"https://codeload.github.com/insightsengineering/r-pkgdown-multiversion/tar.gz/v2.4.3","html_url":"https://github.com/insightsengineering/r-pkgdown-multiversion/releases/tag/v2.4.3","dependencies_parsed_at":"2024-02-14T07:19:02.790Z","dependency_job_id":null,"purl":"pkg:github/insightsengineering/r-pkgdown-multiversion@v2.4.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v2.4.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v2.4.3/manifests"},{"name":"v2.4.2","sha":"c22cd0c63c9be430e0e6de614ddd954f43fc879c","kind":"commit","published_at":"2024-01-10T14:56:57.000Z","download_url":"https://codeload.github.com/insightsengineering/r-pkgdown-multiversion/tar.gz/v2.4.2","html_url":"https://github.com/insightsengineering/r-pkgdown-multiversion/releases/tag/v2.4.2","dependencies_parsed_at":"2024-01-19T05:10:46.574Z","dependency_job_id":null,"purl":"pkg:github/insightsengineering/r-pkgdown-multiversion@v2.4.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v2.4.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v2.4.2/manifests"},{"name":"v2.4.1","sha":"8fe31e6188b32343b4ea0417fa4df3130d0dac18","kind":"commit","published_at":"2023-11-01T20:08:21.000Z","download_url":"https://codeload.github.com/insightsengineering/r-pkgdown-multiversion/tar.gz/v2.4.1","html_url":"https://github.com/insightsengineering/r-pkgdown-multiversion/releases/tag/v2.4.1","dependencies_parsed_at":"2023-11-03T06:10:25.773Z","dependency_job_id":null,"purl":"pkg:github/insightsengineering/r-pkgdown-multiversion@v2.4.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v2.4.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v2.4.1/manifests"},{"name":"v2.4.0","sha":"89bc16b098aa09c6df7d5e28c77c4d5475470a02","kind":"commit","published_at":"2023-06-13T11:52:53.000Z","download_url":"https://codeload.github.com/insightsengineering/r-pkgdown-multiversion/tar.gz/v2.4.0","html_url":"https://github.com/insightsengineering/r-pkgdown-multiversion/releases/tag/v2.4.0","dependencies_parsed_at":"2023-06-15T00:27:36.332Z","dependency_job_id":null,"purl":"pkg:github/insightsengineering/r-pkgdown-multiversion@v2.4.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v2.4.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v2.4.0/manifests"},{"name":"v2.3.0","sha":"5d818561709f56fe1980139242594edcebd94a2a","kind":"commit","published_at":"2023-02-17T14:15:11.000Z","download_url":"https://codeload.github.com/insightsengineering/r-pkgdown-multiversion/tar.gz/v2.3.0","html_url":"https://github.com/insightsengineering/r-pkgdown-multiversion/releases/tag/v2.3.0","dependencies_parsed_at":"2023-06-02T00:36:26.839Z","dependency_job_id":null,"purl":"pkg:github/insightsengineering/r-pkgdown-multiversion@v2.3.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v2.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v2.3.0/manifests"},{"name":"v2.2.0","sha":"9e462073f76279b12b18a0d88f36ca235a18065d","kind":"commit","published_at":"2022-10-03T13:04:22.000Z","download_url":"https://codeload.github.com/insightsengineering/r-pkgdown-multiversion/tar.gz/v2.2.0","html_url":"https://github.com/insightsengineering/r-pkgdown-multiversion/releases/tag/v2.2.0","dependencies_parsed_at":"2023-06-01T11:08:14.093Z","dependency_job_id":null,"purl":"pkg:github/insightsengineering/r-pkgdown-multiversion@v2.2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v2.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v2.2.0/manifests"},{"name":"latest","sha":"89953c272e8a333bb4b2b41259848bf9c5780dab","kind":"commit","published_at":"2022-09-03T15:32:38.000Z","download_url":"https://codeload.github.com/insightsengineering/r-pkgdown-multiversion/tar.gz/latest","html_url":"https://github.com/insightsengineering/r-pkgdown-multiversion/releases/tag/latest","dependencies_parsed_at":"2023-05-30T22:19:41.934Z","dependency_job_id":null,"purl":"pkg:github/insightsengineering/r-pkgdown-multiversion@latest","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/latest","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/latest/manifests"},{"name":"v2","sha":"89953c272e8a333bb4b2b41259848bf9c5780dab","kind":"commit","published_at":"2022-09-03T15:32:38.000Z","download_url":"https://codeload.github.com/insightsengineering/r-pkgdown-multiversion/tar.gz/v2","html_url":"https://github.com/insightsengineering/r-pkgdown-multiversion/releases/tag/v2","dependencies_parsed_at":"2023-05-30T22:19:41.456Z","dependency_job_id":null,"purl":"pkg:github/insightsengineering/r-pkgdown-multiversion@v2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v2/manifests"},{"name":"v2.1.2","sha":"89953c272e8a333bb4b2b41259848bf9c5780dab","kind":"commit","published_at":"2022-09-03T15:32:38.000Z","download_url":"https://codeload.github.com/insightsengineering/r-pkgdown-multiversion/tar.gz/v2.1.2","html_url":"https://github.com/insightsengineering/r-pkgdown-multiversion/releases/tag/v2.1.2","dependencies_parsed_at":"2023-05-30T22:19:40.992Z","dependency_job_id":null,"purl":"pkg:github/insightsengineering/r-pkgdown-multiversion@v2.1.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v2.1.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v2.1.2/manifests"},{"name":"v2.1.1","sha":"f72d6d1c2ac03e8819f1bd00867137a5aa3b37a1","kind":"commit","published_at":"2022-07-14T14:08:08.000Z","download_url":"https://codeload.github.com/insightsengineering/r-pkgdown-multiversion/tar.gz/v2.1.1","html_url":"https://github.com/insightsengineering/r-pkgdown-multiversion/releases/tag/v2.1.1","dependencies_parsed_at":"2023-05-30T22:19:42.533Z","dependency_job_id":null,"purl":"pkg:github/insightsengineering/r-pkgdown-multiversion@v2.1.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v2.1.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v2.1.1/manifests"},{"name":"v2.1.0","sha":"614e6208d5522b5911d1a6c035584c922b3494cd","kind":"commit","published_at":"2022-06-24T04:10:32.000Z","download_url":"https://codeload.github.com/insightsengineering/r-pkgdown-multiversion/tar.gz/v2.1.0","html_url":"https://github.com/insightsengineering/r-pkgdown-multiversion/releases/tag/v2.1.0","dependencies_parsed_at":"2023-05-30T22:19:43.072Z","dependency_job_id":null,"purl":"pkg:github/insightsengineering/r-pkgdown-multiversion@v2.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v2.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v2.1.0/manifests"},{"name":"v2.0.1","sha":"b33b369d97c1fd1d511bffcb84bdffc18c599f32","kind":"commit","published_at":"2022-06-24T02:55:42.000Z","download_url":"https://codeload.github.com/insightsengineering/r-pkgdown-multiversion/tar.gz/v2.0.1","html_url":"https://github.com/insightsengineering/r-pkgdown-multiversion/releases/tag/v2.0.1","dependencies_parsed_at":"2023-05-30T22:19:43.592Z","dependency_job_id":null,"purl":"pkg:github/insightsengineering/r-pkgdown-multiversion@v2.0.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v2.0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v2.0.1/manifests"},{"name":"v2.0.0","sha":"25fd74d57b3fe01e2bf09beda9de4fd015e8295b","kind":"commit","published_at":"2022-06-24T02:30:11.000Z","download_url":"https://codeload.github.com/insightsengineering/r-pkgdown-multiversion/tar.gz/v2.0.0","html_url":"https://github.com/insightsengineering/r-pkgdown-multiversion/releases/tag/v2.0.0","dependencies_parsed_at":"2023-05-30T22:19:44.257Z","dependency_job_id":null,"purl":"pkg:github/insightsengineering/r-pkgdown-multiversion@v2.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v2.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v2.0.0/manifests"},{"name":"v0.0.1","sha":"98de939ee7fc4814039e518218ffea61bc484013","kind":"tag","published_at":"2021-11-23T13:48:56.000Z","download_url":"https://codeload.github.com/insightsengineering/r-pkgdown-multiversion/tar.gz/v0.0.1","html_url":"https://github.com/insightsengineering/r-pkgdown-multiversion/releases/tag/v0.0.1","dependencies_parsed_at":"2023-05-30T22:19:45.627Z","dependency_job_id":null,"purl":"pkg:github/insightsengineering/r-pkgdown-multiversion@v0.0.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v0.0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v0.0.1/manifests"},{"name":"v1","sha":"bc87179421453b0cef3697beeff30bbc2f6d292e","kind":"commit","published_at":"2021-11-23T13:32:27.000Z","download_url":"https://codeload.github.com/insightsengineering/r-pkgdown-multiversion/tar.gz/v1","html_url":"https://github.com/insightsengineering/r-pkgdown-multiversion/releases/tag/v1","dependencies_parsed_at":"2023-05-30T22:19:45.156Z","dependency_job_id":null,"purl":"pkg:github/insightsengineering/r-pkgdown-multiversion@v1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v1/manifests"},{"name":"v1.0.1","sha":"bc87179421453b0cef3697beeff30bbc2f6d292e","kind":"commit","published_at":"2021-11-23T13:32:27.000Z","download_url":"https://codeload.github.com/insightsengineering/r-pkgdown-multiversion/tar.gz/v1.0.1","html_url":"https://github.com/insightsengineering/r-pkgdown-multiversion/releases/tag/v1.0.1","dependencies_parsed_at":"2023-05-30T22:19:44.786Z","dependency_job_id":null,"purl":"pkg:github/insightsengineering/r-pkgdown-multiversion@v1.0.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v1.0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/tags/v1.0.1/manifests"}]},"repo_metadata_updated_at":"2025-10-29T05:17:03.569Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":2,"rankings":{"downloads":null,"dependent_repos_count":20.605292346696245,"dependent_packages_count":0.0,"stargazers_count":27.412454444620504,"forks_count":35.16399936618602,"docker_downloads_count":null,"average":20.795436539375693},"purl":"pkg:githubactions/insightsengineering/r-pkgdown-multiversion","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/insightsengineering/r-pkgdown-multiversion","docker_dependents_count":null,"docker_downloads_count":null,"usage_url":"https://repos.ecosyste.ms/usage/actions/insightsengineering/r-pkgdown-multiversion","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/insightsengineering/r-pkgdown-multiversion/dependencies","status":null,"funding_links":["https://pharmaverse.org"],"critical":null,"issue_metadata":{"last_synced_at":"2025-04-12T18:35:11.027Z","issues_count":6,"pull_requests_count":19,"avg_time_to_close_issue":2172107.5,"avg_time_to_close_pull_request":431251.5263157895,"issues_closed_count":4,"pull_requests_closed_count":19,"pull_request_authors_count":5,"issue_authors_count":3,"avg_comments_per_issue":3.3333333333333335,"avg_comments_per_pull_request":0.42105263157894735,"merged_pull_requests_count":17,"bot_issues_count":0,"bot_pull_requests_count":0,"past_year_issues_count":2,"past_year_pull_requests_count":6,"past_year_avg_time_to_close_issue":942562.0,"past_year_avg_time_to_close_pull_request":110298.16666666667,"past_year_issues_closed_count":2,"past_year_pull_requests_closed_count":6,"past_year_pull_request_authors_count":2,"past_year_issue_authors_count":2,"past_year_avg_comments_per_issue":2.5,"past_year_avg_comments_per_pull_request":0.6666666666666666,"past_year_bot_issues_count":0,"past_year_bot_pull_requests_count":0,"past_year_merged_pull_requests_count":6,"issues_url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/repositories/insightsengineering%2Fr-pkgdown-multiversion/issues","maintainers":[],"active_maintainers":[]},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/insightsengineering%2Fr-pkgdown-multiversion/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/insightsengineering%2Fr-pkgdown-multiversion/version_numbers","latest_version_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/insightsengineering%2Fr-pkgdown-multiversion/latest_version","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/insightsengineering%2Fr-pkgdown-multiversion/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/insightsengineering%2Fr-pkgdown-multiversion/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/insightsengineering%2Fr-pkgdown-multiversion/codemeta","maintainers":[]}