{"id":18584285,"url":"https://github.com/brob/github-issues-search-bot","last_synced_at":"2026-03-19T05:11:11.698Z","repository":{"id":46065504,"uuid":"428766002","full_name":"brob/github-issues-search-bot","owner":"brob","description":null,"archived":false,"fork":false,"pushed_at":"2023-12-15T11:36:27.000Z","size":26,"stargazers_count":1,"open_issues_count":41,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-06-19T16:50:12.715Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/brob.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-11-16T18:12:47.000Z","updated_at":"2021-12-02T17:14:56.000Z","dependencies_parsed_at":"2024-11-07T00:42:13.626Z","dependency_job_id":null,"html_url":"https://github.com/brob/github-issues-search-bot","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/brob/github-issues-search-bot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brob%2Fgithub-issues-search-bot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brob%2Fgithub-issues-search-bot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brob%2Fgithub-issues-search-bot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brob%2Fgithub-issues-search-bot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/brob","download_url":"https://codeload.github.com/brob/github-issues-search-bot/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/brob%2Fgithub-issues-search-bot/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29040728,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-03T09:57:37.951Z","status":"ssl_error","status_checked_at":"2026-02-03T09:55:14.920Z","response_time":96,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-07T00:27:00.196Z","updated_at":"2026-02-03T10:01:42.346Z","avatar_url":"https://github.com/brob.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# GitHub Recommended Issues Bot\n\nWhen users leave an Issue on a repository, getting timely feedback is critical. If their Issue is actually a duplicate or something that other contributors/users are talking about, it would be good for them to know this.\n\nThis bot uses Algolia to index and perform searches against a repository's Issue history to leave a selection of possibly related Issues on a newly opened Issue.\n\n## Usage\n\nThe workflow depends on three different Actions. \n\n1. [An action to search Algolia Records](https://github.com/marketplace/actions/get-algolia-issue-records)\n2. [An action to leave a comment based on the search results](https://github.com/marketplace/actions/create-or-update-comment)\n3. [An action to ingest the inciting Issue into the Algolia Index](https://github.com/marketplace/actions/create-or-update-algolia-index-record)\n\n```yaml\n# This is a basic workflow to help you get started with Actions\nname: related-issues\n\n# Controls when the workflow will run\non:\n  # Triggers the workflow on push or pull request events but only for the main branch\n  issues:\n    types: \n      - opened\n\n# A workflow run is made up of one or more jobs that can run sequentially or in parallel\njobs:\n  get-related-issues:\n    permissions: \n      issues: write\n    runs-on: ubuntu-latest\n    steps:\n      - id: search\n        name: Search based on issue title\n        uses: brob/algolia-issue-search@v1.0\n        with: \n          app_id: ${{ secrets.ALGOLIA_APP_ID }}\n          api_key: ${{ secrets.ALGOLIA_API_KEY }}\n          index_name: ${{ github.event.repository.name }}\n          issue_title: ${{ github.event.issue.title }}\n      - name: Create or Update Comment\n        uses: peter-evans/create-or-update-comment@v1.4.5\n        with:\n          # GITHUB_TOKEN or a repo scoped PAT.\n          token: ${{ github.token }}\n          # The number of the issue or pull request in which to create a comment.\n          issue-number: ${{ github.event.issue.number }}\n          # The comment body.\n          body: |\n            # While you wait, here are related issues:\n            ${{ steps.search.outputs.issues_list }}\n            just a test of post comment\n      - name: Add Algolia Record\n        id: ingest\n        uses: chuckmeyer/add-algolia-record@v0\n\n        with:\n          app_id: ${{ secrets.ALGOLIA_APP_ID }}\n          api_key: ${{ secrets.ALGOLIA_API_KEY }}\n          index_name: ${{ github.event.repository.name }}\n          record: |\n            {\n              \"title\": \"${{ github.event.issue.title }}\", \n              \"url\": \"${{ github.event.issue.html_url }}\", \n              \"labels\": \"${{ github.event.issue.labels }}\",\n              \"objectID\": \"${{ github.event.issue.number }}\"\n            }\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrob%2Fgithub-issues-search-bot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbrob%2Fgithub-issues-search-bot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbrob%2Fgithub-issues-search-bot/lists"}