{"id":7748104,"name":"EndBug/pages-preview","ecosystem":"actions","description":"Deploy GitHub Pages previews for your branches and PRs","homepage":"","licenses":"mit","normalized_licenses":["MIT"],"repository_url":"https://github.com/EndBug/pages-preview","keywords_array":["ci","cicd","deployment","github-actions","github-pages","preview"],"namespace":"EndBug","versions_count":6,"first_release_published_at":"2023-01-29T22:36:05.000Z","latest_release_published_at":"2025-08-13T16:12:34.000Z","latest_release_number":"v1.1.2","last_synced_at":"2026-07-21T07:02:35.521Z","created_at":"2023-05-17T11:40:04.741Z","updated_at":"2026-07-21T07:02:35.522Z","registry_url":"https://github.com/EndBug/pages-preview","install_command":null,"documentation_url":null,"metadata":{"name":"Pages Preview","author":"Federico Grandi \u003cfgrandi30@gmail.com\u003e","description":"Deploy GitHub Pages previews for your branches and PRs","branding":{"color":"gray-dark","icon":"upload-cloud"},"inputs":{"build_dir":{"description":"The directory in which the website has been built, in the a/b/c format","required":true},"preview_base_url":{"description":"The GitHub Pages base URL of the preview repo (e.g. https://octocat.github.io/preview)","required":true},"preview_repo":{"description":"The repository to push previews to, in the Owner/Name format","required":true},"preview_token":{"description":"The token to access the preview repo","required":true},"deployment_env":{"description":"The name of the environment to use for the deployment","default":"preview","required":false},"deployments":{"description":"Whether to use the deployments API","default":"true","required":false},"git_author_name":{"description":"The name of the author of the resulting commit","default":"${{ github.actor }}","required":false},"git_author_email":{"description":"The email of the author of the resulting commit","default":"${{ github.actor }}@users.noreply.github.com","required":false},"git_committer_name":{"description":"The committer of the resulting commit","required":false},"git_committer_email":{"description":"The email of the committer of the resulting commit","required":false},"pr_comment":{"description":"Whether to comment on PRs","default":"true","required":false},"preview_branch":{"description":"The name of the branch that hosts the previews","default":"gh-pages","required":false},"preview_workflow_file_name":{"description":"The name of the workflow file that contains the comment workflow in the preview repo. If you use my template, the name is already 'preview.yml'","default":"preview.yml","required":false}},"runs":{"using":"composite","steps":[{"name":"Parse what the action has to perform","run":"${{ github.action_path }}/lib/parse_action.sh","shell":"bash","id":"parse_action","env":{"EVENT_NAME":"${{ github.event_name }}","EVENT_TYPE":"${{ github.event.action }}","PR_NUMBER":"${{ github.event.number }}","REF":"${{ github.event.ref.ref || github.event.ref }}","REF_TYPE":"${{ github.event.ref_type || github.ref_type }}","REPO_NAME":"${{ github.repository }}"}},{"name":"Create a new deployment","if":"${{ steps.parse_action.outputs.action == 'deploy' \u0026\u0026 inputs.deployments == 'true' }}","id":"deployment","uses":"EndBug/deployments@140-task","with":{"step":"start","env":"${{ inputs.deployment_env }}","ref":"${{ github.event.pull_request.head.sha || github.head_ref || github.ref }}","task":"deploy:${{ steps.parse_action.outputs.path }}"}},{"name":"Set up the preview repo","if":"${{ steps.parse_action.outputs.action != 'none' }}","shell":"bash","run":"cd ${{ github.workspace }}/..\ngit clone \"https://git:${{ inputs.preview_token }}@github.com/${{ inputs.preview_repo }}.git\" preview_${{ github.sha }}\ncd preview_${{ github.sha }} \ngit config --global user.name ${{ inputs.git_author_name }}\ngit config --global user.email ${{ inputs.git_author_email }}\necho \"GIT_COMMITTER_NAME=${{ inputs.git_committer_name || inputs.git_author_name }}\" \u003e\u003e $GITHUB_ENV\necho \"GIT_COMMITTER_EMAIL=${{ inputs.git_committer_email || inputs.git_author_email }}\" \u003e\u003e $GITHUB_ENV\ngit checkout ${{ inputs.preview_branch }}\n"},{"name":"Copy the build directory to the destination and commit the changes","if":"${{ steps.parse_action.outputs.action == 'deploy' }}","shell":"bash","working-directory":"../preview_${{ github.sha }}","run":"set -e\n\n# Remove old preview folder\ngit rm \"${{ steps.parse_action.outputs.path }}\" -r --ignore-unmatch\n\n# Copy new build\nmkdir -p \"${{ steps.parse_action.outputs.path }}\"\ncp -r \"${{ github.workspace }}/${{ inputs.build_dir }}/.\" \"${{ steps.parse_action.outputs.path }}/\"\n\ngit add \"${{ steps.parse_action.outputs.path }}\"\ngit commit --message=\"ci: deploy preview for ${{ steps.parse_action.outputs.path }}\n\nCommit created with [EndBug/pages-preview](https://github.com/EndBug/pages-preview)\" --allow-empty\n\n# Retry loop for safe push\nmax_attempts=5\nattempt=1\n\nwhile [ $attempt -le $max_attempts ]; do\n  echo \"🔄 Attempt $attempt to push changes...\"\n  git pull --rebase origin ${{ inputs.preview_branch }} || exit 1\n  if git push origin ${{ inputs.preview_branch }}; then\n    echo \"✅ Push successful\"\n    break\n  fi\n  attempt=$(( attempt + 1 ))\n  echo \"⚠️ Push failed due to concurrent changes, retrying in 3s...\"\n  sleep 3\ndone\n\nif [ $attempt -gt $max_attempts ]; then\n  echo \"❌ Failed to push after $max_attempts attempts\"\n  exit 1\nfi\n"},{"name":"Remove the destination directory and commit the changes","if":"${{ steps.parse_action.outputs.action == 'remove' }}","shell":"bash","working-directory":"../preview_${{ github.sha }}","run":"git rm \"${{ steps.parse_action.outputs.path }}\" -r --ignore-unmatch\ngit commit --message=\"ci: remove preview for ${{ steps.parse_action.outputs.path }}\n\nCommit created with [EndBug/pages-preview](https://github.com/EndBug/pages-preview)\" --allow-empty\n\n# Retry loop for safe push\nmax_attempts=5\nattempt=1\n\nwhile [ $attempt -le $max_attempts ]; do\n  echo \"🔄 Attempt $attempt to push changes...\"\n  git pull --rebase origin ${{ inputs.preview_branch }} || exit 1\n  if git push origin ${{ inputs.preview_branch }}; then\n    echo \"✅ Push successful\"\n    break\n  fi\n  attempt=$(( attempt + 1 ))\n  echo \"⚠️ Push failed due to concurrent changes, retrying in 3s...\"\n  sleep 3\ndone\n\nif [ $attempt -gt $max_attempts ]; then\n  echo \"❌ Failed to push after $max_attempts attempts\"\n  exit 1\nfi\n"},{"name":"Check whether there has been any change in the preview repo","if":"${{ steps.parse_action.outputs.action != 'none' }}","id":"check_changes","shell":"bash","working-directory":"../preview_${{ github.sha }}","run":"changed=$(git diff --exit-code --quiet HEAD^..HEAD \u0026\u0026 echo \"false\" || echo \"true\")\necho \"changed=$changed\" \u003e\u003e $GITHUB_OUTPUT\necho \"changed: $changed\"\n"},{"name":"Get current ref \u0026 commit date","if":"${{ steps.parse_action.outputs.action != 'none' }}","id":"current_ref","shell":"bash","working-directory":"../preview_${{ github.sha }}","run":"sha=$(git rev-parse HEAD)\necho \"sha=$sha\" \u003e\u003e $GITHUB_OUTPUT\necho \"sha: $sha\"\n\ndate=$(git show -s --format=%ci HEAD)\necho \"date=$date\" \u003e\u003e $GITHUB_OUTPUT\necho \"date: $date\"\n"},{"name":"Parse preview repo owner and name","if":"${{ steps.parse_action.outputs.action != 'none' }}","id":"parse_preview_repo","shell":"bash","run":"owner=$(cut -d \"/\" -f 1 \u003c\u003c\u003c\"${{ inputs.preview_repo }}\")\necho \"owner=$owner\" \u003e\u003e $GITHUB_OUTPUT\necho \"owner: $owner\"\n\nname=$(cut -d \"/\" -f 2 \u003c\u003c\u003c\"${{ inputs.preview_repo }}\")\necho \"name=$name\" \u003e\u003e $GITHUB_OUTPUT\necho \"name: $name\"\n"},{"name":"Trigger deployment in the preview repo","uses":"convictional/trigger-workflow-and-wait@v1.6.5","if":"${{ steps.parse_action.outputs.action != 'none' \u0026\u0026 inputs.deployments == 'true' \u0026\u0026 steps.check_changes.outputs.changed == 'true'}}","id":"dispatch","with":{"owner":"${{ steps.parse_preview_repo.outputs.owner }}","repo":"${{ steps.parse_preview_repo.outputs.name }}","github_token":"${{ inputs.preview_token }}","workflow_file_name":"${{ inputs.preview_workflow_file_name }}","wait_interval":10,"client_payload":"{\n  \"ref\": \"${{ steps.current_ref.outputs.sha }}\",\n  \"version\": \"v1\"\n}","propagate_failure":true}},{"name":"Set deployment status","if":"${{ always() \u0026\u0026 steps.parse_action.outputs.action == 'deploy' \u0026\u0026 inputs.deployments == 'true' }}","uses":"EndBug/deployments@140-task","with":{"step":"finish","status":"${{ job.status }}","env":"${{ steps.deployment.outputs.env }}","deployment_id":"${{ steps.deployment.outputs.deployment_id }}","env_url":"${{ inputs.preview_base_url }}/${{ steps.parse_action.outputs.path }}","override":false,"auto_inactive":false}},{"name":"Deactivate previous deployments","if":"${{ success() \u0026\u0026 inputs.deployments == 'true' }}","uses":"actions/github-script@v7","with":{"result-encoding":"string","script":"let deployments = (await github.rest.repos.listDeployments({\n  owner: context.repo.owner,\n  repo: context.repo.repo,\n  task: 'deploy:${{ steps.parse_action.outputs.path }}'\n}))\n  .data\n  .filter(d =\u003e d.id != '${{ steps.deployment.outputs.deployment_id }}' \u0026\u0026 d.task == 'deploy:${{ steps.parse_action.outputs.path }}')\n  .map(d =\u003e d.id)\n\nconsole.log(`Found ${deployments.length} deployments to deactivate`, deployments)\n\nfor (id of deployments) {\n  await github.rest.repos.createDeploymentStatus({\n    owner: context.repo.owner,\n    repo: context.repo.repo,\n    deployment_id: id,\n    state: 'inactive'\n  })\n}\n"}},{"name":"Determine whether to comment on PR","id":"pr_comment","shell":"bash","run":"result=${{\n  inputs.pr_comment == 'true' \u0026\u0026 \n  startsWith(github.event_name, 'pull_request') \u0026\u0026 \n  steps.parse_action.outputs.action != 'none' \u0026\u0026 \n  steps.dispatch.outputs.conclusion == 'success' \n}}\necho \"result=$result\" \u003e\u003e $GITHUB_OUTPUT\necho \"result: $result\"\n"},{"name":"Parse source repo owner and name","if":"${{ steps.pr_comment.outputs.result == 'true' }}","id":"parse_source_repo","shell":"bash","run":"owner=$(cut -d \"/\" -f 1 \u003c\u003c\u003c\"${{ github.repository }}\")\necho \"owner=$owner\" \u003e\u003e $GITHUB_OUTPUT\necho \"owner: $owner\"\n\nname=$(cut -d \"/\" -f 2 \u003c\u003c\u003c\"${{ github.repository }}\")\necho \"name=$name\" \u003e\u003e $GITHUB_OUTPUT\necho \"name: $name\"\n"},{"name":"Comment on deployment","if":"${{ steps.pr_comment.outputs.result == 'true' \u0026\u0026 steps.parse_action.outputs.action == 'deploy' }}","uses":"marocchino/sticky-pull-request-comment@v2","with":{"repo":"${{ steps.parse_source_repo.outputs.name }}","message":"[Pages Preview](https://github.com/EndBug/pages-preview)\n:---:\n:rocket: Deployed preview to ${{ inputs.preview_base_url }}/${{ steps.parse_action.outputs.path }}\non branch [`${{ inputs.preview_branch }}`](${{ github.server_url }}/${{ inputs.preview_repo }}/tree/${{ inputs.preview_branch }}) at ${{ steps.current_ref.outputs.date }}","number":"${{ github.event.number }}"}},{"name":"Comment on removal","if":"${{ steps.pr_comment.outputs.result == 'true' \u0026\u0026 steps.parse_action.outputs.action == 'remove' }}","uses":"marocchino/sticky-pull-request-comment@v2","with":{"repo":"${{ steps.parse_source_repo.outputs.name }}","message":"[Pages Preview](https://github.com/EndBug/pages-preview)\n:---:\nPreview removed because the pull request was closed.\n${{ steps.current_ref.outputs.date }}","number":"${{ github.event.number }}"}}]},"default_branch":"main","path":null},"repo_metadata":{"id":95842547,"uuid":"558427792","full_name":"EndBug/pages-preview","owner":"EndBug","description":":octocat: A GitHub Action that creates a GitHub Pages preview for PRs and branches","archived":false,"fork":false,"pushed_at":"2025-09-10T12:28:05.000Z","size":120,"stargazers_count":17,"open_issues_count":9,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-10T16:49:39.934Z","etag":null,"topics":["ci","cicd","deployment","github-actions","github-pages","preview"],"latest_commit_sha":null,"homepage":"","language":"Shell","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/EndBug.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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},"funding":{"github":["endbug"],"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"created_at":"2022-10-27T14:26:24.000Z","updated_at":"2025-09-10T12:28:08.000Z","dependencies_parsed_at":"2025-03-05T18:35:16.657Z","dependency_job_id":"55dd9dd2-b034-42c3-b57d-9267a7fe4dd4","html_url":"https://github.com/EndBug/pages-preview","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/EndBug/pages-preview","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EndBug%2Fpages-preview","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EndBug%2Fpages-preview/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EndBug%2Fpages-preview/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EndBug%2Fpages-preview/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/EndBug","download_url":"https://codeload.github.com/EndBug/pages-preview/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EndBug%2Fpages-preview/sbom","scorecard":{"id":45758,"data":{"date":"2025-08-11","repo":{"name":"github.com/EndBug/pages-preview","commit":"f04753cde7a34d1c8229982e8eb0b2f305324242"},"scorecard":{"version":"v5.2.1-40-gf6ed084d","commit":"f6ed084d17c9236477efd66e5b258b9d4cc7b389"},"score":4.4,"checks":[{"name":"Maintained","score":5,"reason":"6 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 5","details":null,"documentation":{"short":"Determines if the project is \"actively maintained\".","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#maintained"}},{"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":"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":"Code-Review","score":1,"reason":"Found 3/24 approved changesets -- score normalized to 1","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":"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/labels.yml:7: update your workflow using https://app.stepsecurity.io/secureworkflow/EndBug/pages-preview/labels.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/stale.yml:9: update your workflow using https://app.stepsecurity.io/secureworkflow/EndBug/pages-preview/stale.yml/main?enable=pin","Warn: third-party GitHubAction not pinned by hash: .github/workflows/versioning.yml:11: update your workflow using https://app.stepsecurity.io/secureworkflow/EndBug/pages-preview/versioning.yml/main?enable=pin","Info:   0 out of   3 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: no topLevel permission defined: .github/workflows/labels.yml:1","Warn: no topLevel permission defined: .github/workflows/stale.yml:1","Warn: no topLevel permission defined: .github/workflows/versioning.yml:1","Info: no jobLevel write permissions found"],"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":"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: MIT License: 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":"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":"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":"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":"Security-Policy","score":0,"reason":"security policy file not detected","details":["Warn: no security policy file detected","Warn: no security file to analyze","Warn: no security file to analyze","Warn: no security file to analyze"],"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":"SAST","score":0,"reason":"SAST tool is not run on all commits -- score normalized to 0","details":["Warn: 0 commits out of 14 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-14T22:43:25.597Z","repository_id":95842547,"created_at":"2025-08-14T22:43:25.597Z","updated_at":"2025-08-14T22:43:25.597Z"},"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274907645,"owners_count":25371817,"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-12T02:00:09.324Z","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":"EndBug","name":"Federico Grandi","uuid":"26386270","kind":"user","description":"GitHub Campus Expert 🚩 @ PoliMi","email":"","website":null,"location":"Milan, IT","twitter":null,"company":null,"icon_url":"https://avatars.githubusercontent.com/u/26386270?u=5e0e0b461f9a6ca130a55d91f091615013e8fc4c\u0026v=4","repositories_count":64,"last_synced_at":"2025-09-05T00:41:51.166Z","metadata":{"has_sponsors_listing":true,"funding":{"github":["endbug"],"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"html_url":"https://github.com/EndBug","funding_links":["https://github.com/sponsors/endbug"],"total_stars":1264,"followers":272,"following":63,"created_at":"2022-11-12T20:17:27.269Z","updated_at":"2025-09-05T00:41:51.166Z","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/EndBug","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/EndBug/repositories"},"tags":[{"name":"v1.1.2","sha":"3e2aef8b39eb77522c278172e94c8628b2b58bcc","kind":"commit","published_at":"2025-08-13T16:12:34.000Z","download_url":"https://codeload.github.com/EndBug/pages-preview/tar.gz/v1.1.2","html_url":"https://github.com/EndBug/pages-preview/releases/tag/v1.1.2","dependencies_parsed_at":"2025-08-24T12:49:38.380Z","dependency_job_id":null,"purl":"pkg:github/EndBug/pages-preview@v1.1.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EndBug%2Fpages-preview/tags/v1.1.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EndBug%2Fpages-preview/tags/v1.1.2/manifests"},{"name":"latest","sha":"196e85fb8eb6e55cb82c565e2bffa8911d6ee2d6","kind":"commit","published_at":"2023-03-15T15:18:01.000Z","download_url":"https://codeload.github.com/EndBug/pages-preview/tar.gz/latest","html_url":"https://github.com/EndBug/pages-preview/releases/tag/latest","dependencies_parsed_at":"2023-06-02T00:39:28.633Z","dependency_job_id":null,"purl":"pkg:github/EndBug/pages-preview@latest","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EndBug%2Fpages-preview/tags/latest","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EndBug%2Fpages-preview/tags/latest/manifests"},{"name":"v1.1.1","sha":"196e85fb8eb6e55cb82c565e2bffa8911d6ee2d6","kind":"commit","published_at":"2023-03-15T15:18:01.000Z","download_url":"https://codeload.github.com/EndBug/pages-preview/tar.gz/v1.1.1","html_url":"https://github.com/EndBug/pages-preview/releases/tag/v1.1.1","dependencies_parsed_at":"2023-06-02T00:39:28.694Z","dependency_job_id":null,"purl":"pkg:github/EndBug/pages-preview@v1.1.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EndBug%2Fpages-preview/tags/v1.1.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EndBug%2Fpages-preview/tags/v1.1.1/manifests"},{"name":"v1","sha":"196e85fb8eb6e55cb82c565e2bffa8911d6ee2d6","kind":"commit","published_at":"2023-03-15T15:18:01.000Z","download_url":"https://codeload.github.com/EndBug/pages-preview/tar.gz/v1","html_url":"https://github.com/EndBug/pages-preview/releases/tag/v1","dependencies_parsed_at":"2023-06-02T00:39:28.596Z","dependency_job_id":null,"purl":"pkg:github/EndBug/pages-preview@v1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EndBug%2Fpages-preview/tags/v1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EndBug%2Fpages-preview/tags/v1/manifests"},{"name":"v1.1.0","sha":"e9e976717e1696ac04321bef640eba1948113e33","kind":"commit","published_at":"2023-02-14T22:54:40.000Z","download_url":"https://codeload.github.com/EndBug/pages-preview/tar.gz/v1.1.0","html_url":"https://github.com/EndBug/pages-preview/releases/tag/v1.1.0","dependencies_parsed_at":"2023-06-02T00:39:28.200Z","dependency_job_id":null,"purl":"pkg:github/EndBug/pages-preview@v1.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EndBug%2Fpages-preview/tags/v1.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EndBug%2Fpages-preview/tags/v1.1.0/manifests"},{"name":"v1.0.0","sha":"29f8039fafdc7cc27da8bc44c0636deb2e0a6d54","kind":"commit","published_at":"2023-01-29T22:36:05.000Z","download_url":"https://codeload.github.com/EndBug/pages-preview/tar.gz/v1.0.0","html_url":"https://github.com/EndBug/pages-preview/releases/tag/v1.0.0","dependencies_parsed_at":"2023-06-02T00:39:28.185Z","dependency_job_id":null,"purl":"pkg:github/EndBug/pages-preview@v1.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EndBug%2Fpages-preview/tags/v1.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EndBug%2Fpages-preview/tags/v1.0.0/manifests"}]},"repo_metadata_updated_at":"2025-09-13T01:38:23.983Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":1,"rankings":{"downloads":null,"dependent_repos_count":24.77895737601014,"dependent_packages_count":0.0,"stargazers_count":15.667881476786564,"forks_count":35.20202820472191,"docker_downloads_count":null,"average":18.912216764379654},"purl":"pkg:githubactions/EndBug/pages-preview","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/EndBug/pages-preview","docker_dependents_count":null,"docker_downloads_count":null,"usage_url":"https://repos.ecosyste.ms/usage/actions/EndBug/pages-preview","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/EndBug/pages-preview/dependencies","status":null,"funding_links":["https://github.com/sponsors/endbug","https://github.com/sponsors/EndBug"],"critical":null,"issue_metadata":{"last_synced_at":"2025-08-31T15:28:04.653Z","issues_count":12,"pull_requests_count":16,"avg_time_to_close_issue":564203.3333333334,"avg_time_to_close_pull_request":5117187.909090909,"issues_closed_count":6,"pull_requests_closed_count":11,"pull_request_authors_count":4,"issue_authors_count":4,"avg_comments_per_issue":1.0833333333333333,"avg_comments_per_pull_request":0.75,"merged_pull_requests_count":10,"bot_issues_count":0,"bot_pull_requests_count":3,"past_year_issues_count":1,"past_year_pull_requests_count":0,"past_year_avg_time_to_close_issue":null,"past_year_avg_time_to_close_pull_request":null,"past_year_issues_closed_count":0,"past_year_pull_requests_closed_count":0,"past_year_pull_request_authors_count":0,"past_year_issue_authors_count":1,"past_year_avg_comments_per_issue":0.0,"past_year_avg_comments_per_pull_request":null,"past_year_bot_issues_count":0,"past_year_bot_pull_requests_count":0,"past_year_merged_pull_requests_count":0,"issues_url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/repositories/endbug%2Fpages-preview/issues","maintainers":[{"login":"EndBug","count":13,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/EndBug"}],"active_maintainers":[{"login":"EndBug","count":1,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/EndBug"}]},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/EndBug%2Fpages-preview/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/EndBug%2Fpages-preview/version_numbers","latest_version_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/EndBug%2Fpages-preview/latest_version","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/EndBug%2Fpages-preview/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/EndBug%2Fpages-preview/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/EndBug%2Fpages-preview/codemeta","maintainers":[]}