{"id":7740170,"name":"github/accessibility-alt-text-bot","ecosystem":"actions","description":"This action will check a repos issue, discussion, or PR for correct alt text usage.","homepage":"","licenses":"mit","normalized_licenses":["MIT"],"repository_url":"https://github.com/github/accessibility-alt-text-bot","keywords_array":["accessibility","actions"],"namespace":"github","versions_count":9,"first_release_published_at":"2023-04-28T15:14:46.000Z","latest_release_published_at":"2025-01-29T21:31:44.000Z","latest_release_number":"v1.7.1","last_synced_at":"2026-03-15T03:03:50.453Z","created_at":"2023-05-16T18:45:30.359Z","updated_at":"2026-03-15T03:03:50.454Z","registry_url":"https://github.com/github/accessibility-alt-text-bot","install_command":null,"documentation_url":null,"metadata":{"name":"Accessibility alt text bot","description":"This action will check a repos issue, discussion, or PR for correct alt text usage.","branding":{"icon":"eye","color":"purple"},"inputs":{"config":{"description":"A custom linting configuration","required":false}},"runs":{"using":"composite","steps":[{"name":"Runs alt text check and adds comment","run":"source ${{ github.action_path }}/queries.sh\n\nif [ ${{ github.event.comment }} ]; then\n  content=$COMMENT\n  user=${{ github.event.comment.user.login }}\n  target_id=${{ github.event.comment.id }}\n  if ${{ github.event.issue.pull_request.url != '' }}; then\n    type=pr_comment\n    issue_url=${{ github.event.issue.html_url }}\n    bot_comment_id=$(gh api repos/${{ github.repository }}/issues/${{ github.event.issue.number }}/comments | jq -r '.[] | select(.user.login == \"github-actions[bot]\") | select(.body | test(\"\u003cdiv alt-text-bot-id=\\\"${{ github.event.comment.id }}\\\"\")) | .id')\n  elif ${{ github.event.discussion.id != '' }}; then\n    type=discussion_comment\n    discussion_node_id='${{ github.event.discussion.node_id }}'\n    comment_node_id='${{ github.event.comment.node_id }}'\n    bot_comment_id=$(gh api repos/${{ github.repository }}/discussions/${{ github.event.discussion.number }}/comments | jq -r '.[] | select(.user.login == \"github-actions[bot]\") | select(.body | test(\"\u003cdiv alt-text-bot-id=\\\"${{ github.event.comment.id }}\\\"\")) | .node_id')\n    if ${{ github.event.comment.parent_id != '' }}; then\n      reply_to_id=$(getDiscussionReplyToId $comment_node_id)\n    else\n      reply_to_id=$comment_node_id\n    fi\n  else\n    type=issue_comment\n    issue_url=${{ github.event.issue.html_url }}\n    bot_comment_id=$(gh api repos/${{ github.repository }}/issues/${{ github.event.issue.number }}/comments | jq -r '.[] | select(.user.login == \"github-actions[bot]\") |  select(.body | test(\"\u003cdiv alt-text-bot-id=\\\"${{ github.event.comment.id }}\\\"\")) | .id')\n  fi\n  target=${{ github.event.comment.html_url }}\nelse\n  if [ ${{ github.event.issue }} ]; then\n    type=issue_description\n    content=$ISSUE_BODY\n    issue_url=${{ github.event.issue.html_url }}\n    user=${{ github.event.issue.user.login }}\n    target=\"your issue body\"\n    target_id=${{ github.event.issue.id }}\n    bot_comment_id=$(gh api repos/${{ github.repository }}/issues/${{ github.event.issue.number }}/comments | jq -r '.[] | select(.user.login == \"github-actions[bot]\") | select(.body | test(\"\u003cdiv alt-text-bot-id=\\\"${{ github.event.issue.id }}\\\"\")) | .id')\n  elif [ ${{ github.event.pull_request }} ]; then\n    type=pr_description\n    content=$PR_BODY\n    issue_url=${{ github.event.pull_request.html_url }}\n    user=${{ github.event.pull_request.user.login }}\n    target=\"your pull request body\"\n    target_id=${{ github.event.pull_request.id }}\n    bot_comment_id=$(gh api repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}/comments | jq -r '.[] | select(.user.login == \"github-actions[bot]\") | select(.body | test(\"\u003cdiv alt-text-bot-id=\\\"${{ github.event.pull_request.id }}\\\"\")) | .id')\n  elif [ ${{ github.event.discussion }} ]; then\n    type=discussion_description\n    content=$DISCUSSION_BODY\n    discussion_node_id='${{ github.event.discussion.node_id }}'\n    user=${{ github.event.discussion.user.login }}\n    target=\"your discussion body\"\n    target_id=${{ github.event.discussion.id }}\n    bot_comment_id=$(gh api repos/${{ github.repository }}/discussions/${{ github.event.discussion.number }}/comments | jq -r '.[] | select(.user.login == \"github-actions[bot]\") | select(.body | test(\"\u003cdiv alt-text-bot-id=\\\"${{ github.event.discussion.id }}\\\"\")) | .node_id')\n  fi\nfi\n\nflag=$(node ${{ github.action_path }}/src/index.js \"$content\" \"$CONFIG\")\n\ncustom_config_message=\"\u003cdiv alt-text-bot-id=\\\"$target_id\\\" /\u003e \n\nUh oh! @$user, your markdown has a few linting errors. Check $target to fix the following violations:\n\n$flag \n\n\u003e 🤖 Beep boop! This comment was added automatically by [github/accessibility-alt-text-bot](https://github.com/github/accessibility-alt-text-bot).\n\"\n\nmessage=\"\u003cdiv alt-text-bot-id=\\\"$target_id\\\" /\u003e \n\nUh oh! @$user, at least one image you shared is missing helpful alt text. Check $target to fix the following violations:\n\n$flag \n\nAlt text is an invisible description that helps screen readers describe images to blind or low-vision users. If you are using markdown to display images, add your alt text inside the brackets of the markdown image.\n\nLearn more about alt text at [Basic writing and formatting syntax: images on GitHub Docs](https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax#images).\n\n\u003e 🤖 Beep boop! This comment was added automatically by [github/accessibility-alt-text-bot](https://github.com/github/accessibility-alt-text-bot).\n\"\n\necho \"Config: $CONFIG\"\nif [ \"$CONFIG\" ]; then\n  message=$custom_config_message \nfi\n\necho \"Detected errors: ${flag}\"\necho \"Event type: $type\"\nif [[ $flag \u0026\u0026 ${{ github.event.action }} != 'deleted' ]]; then\n  if [ $bot_comment_id ]; then\n    if [[ $type = pr_comment ]] || [[ $type = pr_description ]]; then\n      gh api repos/${{ github.repository }}/issues/comments/$bot_comment_id -X PATCH -f body=\"$message\"\n    elif [[ $type = issue_comment ]] || [[ $type = issue_description ]]; then\n      gh api repos/${{ github.repository }}/issues/comments/$bot_comment_id -X PATCH -f body=\"$message\"\n    elif [[ $type = discussion_description ]] || [[ $type = discussion_comment ]]; then\n      gh api graphql -f  query='mutation($commentId: ID!, $body: String!) { updateDiscussionComment(input: {commentId: $commentId, body: $body}) { comment { id body }}}' -f commentId=$bot_comment_id -f body=\"$message\"\n    fi\n  else \n    if [[ $type = pr_comment ]] || [[ $type = pr_description ]]; then\n      gh pr comment $issue_url --body \"$message\"\n    elif [[ $type = issue_comment ]] || [[ $type = issue_description ]]; then\n      gh issue comment $issue_url --body \"$message\"\n    elif [[ $type = discussion_description ]]; then\n      addDiscussionComment $discussion_node_id \"$message\"\n    elif [[ $type = discussion_comment ]]; then\n      addDiscussionComment $discussion_node_id \"$message\" $reply_to_id \n    fi\n  fi\nelse \n  echo \"bot_comment_id: $bot_comment_id\"\n  if [ $bot_comment_id ]; then\n    echo \"Deleting bot comment...\"\n    if [[ $type = pr_comment ]] || [[ $type = pr_description ]]; then\n        gh api -X DELETE /repos/${{ github.repository }}/issues/comments/$bot_comment_id\n    elif [[ $type = issue_comment ]] || [[ $type = issue_description ]]; then\n        gh api -X DELETE /repos/${{ github.repository }}/issues/comments/$bot_comment_id\n    elif [[ $type = discussion_description ]] || [[ $type = discussion_comment ]]; then\n        gh api graphql -f  query='mutation($id: ID!) { deleteDiscussionComment(input: {id: $id}) { clientMutationId } }' -f id=$bot_comment_id \n    fi\n  fi\nfi\n","shell":"bash","env":{"GITHUB_TOKEN":"${{ github.token }}","COMMENT":"${{ github.event.comment.body }}","ISSUE_BODY":"${{ github.event.issue.body }}","PR_BODY":"${{ github.event.pull_request.body }}","DISCUSSION_BODY":"${{ github.event.discussion.body }}","CONFIG":"${{ inputs.config }}"}}]},"default_branch":"main","path":null},"repo_metadata":{"id":158097258,"uuid":"632088451","full_name":"github/accessibility-alt-text-bot","owner":"github","description":"An action to remind users to add alt text on Issues, Pull Requests, and Discussions","archived":false,"fork":false,"pushed_at":"2025-09-29T13:17:08.000Z","size":20834,"stargazers_count":83,"open_issues_count":3,"forks_count":14,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-10-10T03:03:42.917Z","etag":null,"topics":["accessibility","actions"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/github.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.txt","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":"SECURITY.md","support":"SUPPORT.md","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":"2023-04-24T17:26:02.000Z","updated_at":"2025-09-30T18:53:40.000Z","dependencies_parsed_at":"2023-12-22T17:21:59.476Z","dependency_job_id":"2ef5ee15-37e3-480b-b4c5-f63a4a081cba","html_url":"https://github.com/github/accessibility-alt-text-bot","commit_stats":{"total_commits":50,"total_committers":6,"mean_commits":8.333333333333334,"dds":0.5,"last_synced_commit":"2a6cbbbd7f6a82d22b6747ca2338152cd6041d89"},"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/github/accessibility-alt-text-bot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/github%2Faccessibility-alt-text-bot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/github%2Faccessibility-alt-text-bot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/github%2Faccessibility-alt-text-bot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/github%2Faccessibility-alt-text-bot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/github","download_url":"https://codeload.github.com/github/accessibility-alt-text-bot/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/github%2Faccessibility-alt-text-bot/sbom","scorecard":{"id":428137,"data":{"date":"2025-08-11","repo":{"name":"github.com/github/accessibility-alt-text-bot","commit":"78632f668433a6612737982e219e9558b01ab013"},"scorecard":{"version":"v5.2.1-40-gf6ed084d","commit":"f6ed084d17c9236477efd66e5b258b9d4cc7b389"},"score":8.1,"checks":[{"name":"Code-Review","score":10,"reason":"all changesets reviewed","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":"Maintained","score":10,"reason":"18 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10","details":null,"documentation":{"short":"Determines if the project is \"actively maintained\".","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#maintained"}},{"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":"Token-Permissions","score":10,"reason":"GitHub workflow tokens follow principle of least privilege","details":["Info: topLevel 'contents' permission set to 'read': .github/workflows/ci.yml:19","Info: topLevel 'contents' permission set to 'read': .github/workflows/test-accessibility-alt-text-bot.yml:23","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":"Security-Policy","score":10,"reason":"security policy file detected","details":["Info: security policy file detected: SECURITY.md:1","Info: Found linked content: SECURITY.md:1","Info: Found disclosure, vulnerability, and/or timelines in security policy: SECURITY.md:1","Info: Found text in security policy: 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":"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":"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":"License","score":10,"reason":"license file detected","details":["Info: project has a license file: LICENSE.txt:0","Info: FSF or OSI recognized license: MIT License: LICENSE.txt: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":"Branch-Protection","score":8,"reason":"branch protection is not maximal on development and all release branches","details":["Info: 'allow deletion' disabled on branch 'main'","Info: 'force pushes' disabled on branch 'main'","Info: 'branch protection settings apply to administrators' is required to merge on branch 'main'","Warn: required approving review count is 1 on branch 'main'","Info: codeowner review is required on branch 'main'","Info: status check found to merge onto on branch 'main'","Info: PRs are required in order to make changes on branch 'main'"],"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":"Binary-Artifacts","score":8,"reason":"binaries present in source code","details":["Warn: binary detected: node_modules/@unrs/resolver-binding-linux-x64-gnu/resolver.linux-x64-gnu.node:1","Warn: binary detected: node_modules/@unrs/resolver-binding-linux-x64-musl/resolver.linux-x64-musl.node:1"],"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":"Pinned-Dependencies","score":3,"reason":"dependency not pinned by hash detected -- score normalized to 3","details":["Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/ci.yml:13: update your workflow using https://app.stepsecurity.io/secureworkflow/github/accessibility-alt-text-bot/ci.yml/main?enable=pin","Warn: GitHub-owned GitHubAction not pinned by hash: .github/workflows/test-accessibility-alt-text-bot.yml:21: update your workflow using https://app.stepsecurity.io/secureworkflow/github/accessibility-alt-text-bot/test-accessibility-alt-text-bot.yml/main?enable=pin","Info:   0 out of   2 GitHub-owned GitHubAction dependencies pinned","Info:   1 out of   1 npmCommand 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":"Vulnerabilities","score":8,"reason":"2 existing vulnerabilities detected","details":["Warn: Project is vulnerable to: GHSA-968p-4wvh-cqc8","Warn: Project is vulnerable to: GHSA-52f5-9888-hmc6"],"documentation":{"short":"Determines if the project has open, known unfixed vulnerabilities.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#vulnerabilities"}},{"name":"SAST","score":10,"reason":"SAST tool is run on all commits","details":["Info: all commits (30) 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"}},{"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"}}]},"last_synced_at":"2025-08-19T02:42:03.007Z","repository_id":158097258,"created_at":"2025-08-19T02:42:03.007Z","updated_at":"2025-08-19T02:42:03.007Z"},"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279008110,"owners_count":26084396,"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-11T02:00:06.511Z","response_time":55,"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":"github","name":"GitHub","uuid":"9919","kind":"organization","description":"How people build software.","email":null,"website":"https://github.com/about","location":"San Francisco, CA","twitter":null,"company":null,"icon_url":"https://avatars.githubusercontent.com/u/9919?v=4","repositories_count":462,"last_synced_at":"2023-04-09T06:36:30.344Z","metadata":{"has_sponsors_listing":false},"html_url":"https://github.com/github","funding_links":[],"total_stars":423165,"followers":null,"following":null,"created_at":"2022-11-02T16:22:19.308Z","updated_at":"2023-04-09T06:36:32.228Z","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/github","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/github/repositories"},"tags":[{"name":"v1.7.1","sha":"531a7430c6930a39cae5a0aab2d165284468060f","kind":"commit","published_at":"2025-01-29T21:31:44.000Z","download_url":"https://codeload.github.com/github/accessibility-alt-text-bot/tar.gz/v1.7.1","html_url":"https://github.com/github/accessibility-alt-text-bot/releases/tag/v1.7.1","dependencies_parsed_at":"2025-02-10T04:15:28.419Z","dependency_job_id":null,"purl":"pkg:github/github/accessibility-alt-text-bot@v1.7.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/github%2Faccessibility-alt-text-bot/tags/v1.7.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/github%2Faccessibility-alt-text-bot/tags/v1.7.1/manifests"},{"name":"v1.7.0","sha":"9b4b0e03eefd10cfafc676d9b67068ec30b68e90","kind":"commit","published_at":"2025-01-27T16:31:14.000Z","download_url":"https://codeload.github.com/github/accessibility-alt-text-bot/tar.gz/v1.7.0","html_url":"https://github.com/github/accessibility-alt-text-bot/releases/tag/v1.7.0","dependencies_parsed_at":"2025-02-10T04:15:28.554Z","dependency_job_id":null,"purl":"pkg:github/github/accessibility-alt-text-bot@v1.7.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/github%2Faccessibility-alt-text-bot/tags/v1.7.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/github%2Faccessibility-alt-text-bot/tags/v1.7.0/manifests"},{"name":"v1.6.0","sha":"34208bfa7d76a87c500c9d0cb08567d2f13636d3","kind":"commit","published_at":"2025-01-07T18:37:27.000Z","download_url":"https://codeload.github.com/github/accessibility-alt-text-bot/tar.gz/v1.6.0","html_url":"https://github.com/github/accessibility-alt-text-bot/releases/tag/v1.6.0","dependencies_parsed_at":"2025-01-09T05:43:12.083Z","dependency_job_id":null,"purl":"pkg:github/github/accessibility-alt-text-bot@v1.6.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/github%2Faccessibility-alt-text-bot/tags/v1.6.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/github%2Faccessibility-alt-text-bot/tags/v1.6.0/manifests"},{"name":"v1.5.0","sha":"ac6fa6d29595e1175b343b9d6d35cf7570a692f6","kind":"commit","published_at":"2024-03-14T23:29:48.000Z","download_url":"https://codeload.github.com/github/accessibility-alt-text-bot/tar.gz/v1.5.0","html_url":"https://github.com/github/accessibility-alt-text-bot/releases/tag/v1.5.0","dependencies_parsed_at":"2024-03-17T08:20:37.963Z","dependency_job_id":null,"purl":"pkg:github/github/accessibility-alt-text-bot@v1.5.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/github%2Faccessibility-alt-text-bot/tags/v1.5.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/github%2Faccessibility-alt-text-bot/tags/v1.5.0/manifests"},{"name":"v1.4.0","sha":"602a5efcf386c52ef8b9a11ead9bfa6ef8d56ba5","kind":"commit","published_at":"2023-10-13T16:41:48.000Z","download_url":"https://codeload.github.com/github/accessibility-alt-text-bot/tar.gz/v1.4.0","html_url":"https://github.com/github/accessibility-alt-text-bot/releases/tag/v1.4.0","dependencies_parsed_at":"2023-10-16T21:33:51.348Z","dependency_job_id":null,"purl":"pkg:github/github/accessibility-alt-text-bot@v1.4.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/github%2Faccessibility-alt-text-bot/tags/v1.4.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/github%2Faccessibility-alt-text-bot/tags/v1.4.0/manifests"},{"name":"v1.3.0","sha":"b5828a5ec03d5fc67860c0f656f4abca3947cced","kind":"commit","published_at":"2023-07-05T17:23:10.000Z","download_url":"https://codeload.github.com/github/accessibility-alt-text-bot/tar.gz/v1.3.0","html_url":"https://github.com/github/accessibility-alt-text-bot/releases/tag/v1.3.0","dependencies_parsed_at":"2023-07-07T04:11:14.441Z","dependency_job_id":null,"purl":"pkg:github/github/accessibility-alt-text-bot@v1.3.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/github%2Faccessibility-alt-text-bot/tags/v1.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/github%2Faccessibility-alt-text-bot/tags/v1.3.0/manifests"},{"name":"v1.2.0","sha":"fa169a794321b2ca45336e6d9ff49dcae9ee22ef","kind":"commit","published_at":"2023-05-31T20:48:59.000Z","download_url":"https://codeload.github.com/github/accessibility-alt-text-bot/tar.gz/v1.2.0","html_url":"https://github.com/github/accessibility-alt-text-bot/releases/tag/v1.2.0","dependencies_parsed_at":"2023-06-02T00:09:49.084Z","dependency_job_id":null,"purl":"pkg:github/github/accessibility-alt-text-bot@v1.2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/github%2Faccessibility-alt-text-bot/tags/v1.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/github%2Faccessibility-alt-text-bot/tags/v1.2.0/manifests"},{"name":"v1.1.0","sha":"0a70e402166eaf83cd791a43d3c0e8bf459a9b41","kind":"commit","published_at":"2023-05-22T20:05:27.000Z","download_url":"https://codeload.github.com/github/accessibility-alt-text-bot/tar.gz/v1.1.0","html_url":"https://github.com/github/accessibility-alt-text-bot/releases/tag/v1.1.0","dependencies_parsed_at":"2023-06-01T00:10:13.361Z","dependency_job_id":null,"purl":"pkg:github/github/accessibility-alt-text-bot@v1.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/github%2Faccessibility-alt-text-bot/tags/v1.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/github%2Faccessibility-alt-text-bot/tags/v1.1.0/manifests"},{"name":"v1.0.0","sha":"746f0efd81f52adf77d3ca3a6054b4d3905b2751","kind":"commit","published_at":"2023-04-28T15:14:46.000Z","download_url":"https://codeload.github.com/github/accessibility-alt-text-bot/tar.gz/v1.0.0","html_url":"https://github.com/github/accessibility-alt-text-bot/releases/tag/v1.0.0","dependencies_parsed_at":"2023-06-01T00:10:13.352Z","dependency_job_id":null,"purl":"pkg:github/github/accessibility-alt-text-bot@v1.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/github%2Faccessibility-alt-text-bot/tags/v1.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/github%2Faccessibility-alt-text-bot/tags/v1.0.0/manifests"}]},"repo_metadata_updated_at":"2025-10-11T17:34:18.160Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":15,"rankings":{"downloads":null,"dependent_repos_count":10.4135636190778,"dependent_packages_count":0.0,"stargazers_count":3.5620345428616704,"forks_count":7.418792584376485,"docker_downloads_count":2.4053240373950247,"average":4.759942956742196},"purl":"pkg:githubactions/github/accessibility-alt-text-bot","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/github/accessibility-alt-text-bot","docker_dependents_count":1,"docker_downloads_count":460,"usage_url":"https://repos.ecosyste.ms/usage/actions/github/accessibility-alt-text-bot","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/github/accessibility-alt-text-bot/dependencies","status":null,"funding_links":[],"critical":null,"issue_metadata":{"last_synced_at":"2025-09-29T04:03:03.044Z","issues_count":22,"pull_requests_count":54,"avg_time_to_close_issue":9511688.0625,"avg_time_to_close_pull_request":164277.64583333334,"issues_closed_count":16,"pull_requests_closed_count":48,"pull_request_authors_count":7,"issue_authors_count":10,"avg_comments_per_issue":0.9090909090909091,"avg_comments_per_pull_request":0.4444444444444444,"merged_pull_requests_count":44,"bot_issues_count":0,"bot_pull_requests_count":10,"past_year_issues_count":3,"past_year_pull_requests_count":25,"past_year_avg_time_to_close_issue":615711.5,"past_year_avg_time_to_close_pull_request":260166.94736842104,"past_year_issues_closed_count":2,"past_year_pull_requests_closed_count":19,"past_year_pull_request_authors_count":5,"past_year_issue_authors_count":3,"past_year_avg_comments_per_issue":0.6666666666666666,"past_year_avg_comments_per_pull_request":0.2,"past_year_bot_issues_count":0,"past_year_bot_pull_requests_count":6,"past_year_merged_pull_requests_count":17,"issues_url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/repositories/github%2Faccessibility-alt-text-bot/issues","maintainers":[{"login":"kendallgassner","count":39,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/kendallgassner"},{"login":"zkoppert","count":1,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/zkoppert"}],"active_maintainers":[{"login":"kendallgassner","count":17,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/kendallgassner"},{"login":"zkoppert","count":1,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/zkoppert"}]},"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/github%2Faccessibility-alt-text-bot/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/github%2Faccessibility-alt-text-bot/version_numbers","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/github%2Faccessibility-alt-text-bot/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/github%2Faccessibility-alt-text-bot/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/github%2Faccessibility-alt-text-bot/codemeta","maintainers":[]}