{"id":15648793,"url":"https://github.com/timja/github-comment-ops","last_synced_at":"2026-02-07T07:01:21.289Z","repository":{"id":43799218,"uuid":"510643878","full_name":"timja/github-comment-ops","owner":"timja","description":"A tool for managing GitHub issues and pull requests via comment-ops. It uses GitHub webhooks to scale across repositories without needing to add a GitHub action to each of them.","archived":false,"fork":false,"pushed_at":"2026-02-02T01:09:18.000Z","size":1041,"stargazers_count":1,"open_issues_count":11,"forks_count":3,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-02-02T11:06:44.353Z","etag":null,"topics":["github","issue-management","pull-request-management","webhooks"],"latest_commit_sha":null,"homepage":"https://github.com/timja/github-comment-ops","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/timja.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-07-05T08:07:59.000Z","updated_at":"2026-02-02T01:09:21.000Z","dependencies_parsed_at":"2024-03-11T01:46:24.531Z","dependency_job_id":"8faf1571-f6bb-47f3-baa6-e13c4a4ddf80","html_url":"https://github.com/timja/github-comment-ops","commit_stats":null,"previous_names":[],"tags_count":37,"template":false,"template_full_name":null,"purl":"pkg:github/timja/github-comment-ops","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timja%2Fgithub-comment-ops","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timja%2Fgithub-comment-ops/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timja%2Fgithub-comment-ops/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timja%2Fgithub-comment-ops/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/timja","download_url":"https://codeload.github.com/timja/github-comment-ops/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timja%2Fgithub-comment-ops/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29188304,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-07T05:07:31.176Z","status":"ssl_error","status_checked_at":"2026-02-07T05:06:15.227Z","response_time":63,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["github","issue-management","pull-request-management","webhooks"],"created_at":"2024-10-03T12:26:24.972Z","updated_at":"2026-02-07T07:01:21.244Z","avatar_url":"https://github.com/timja.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GitHub issue and pull request management with Comment-Ops\n\nA tool for managing GitHub issues and pull requests via comment-ops.\nIt uses GitHub webhooks to scale across repositories without needing to add a GitHub action to each of them.\n\nGitHub apps are used for authentication to limit the required permissions.\n\n## Configuration\n\nThe app is configured with a `.github/comment-ops.yml` file in the main branch of the repository.\nThis can also be applied organization wide by creating it in the organization's `.github` repository.\n\n_Note: This file is required all commands are disabled by default._\n\nThe order of configuration is:\n\n`default config` → `organization` → `repository`\n\nDefault configuration:\n\n```yaml\ncommands:\n  close:\n    enabled: false\n  label:\n    allowedLabels: [] # any label is allowed\n    enabled: false\n  removeLabel:\n    allowedLabels: [] # any label is allowed\n    enabled: false\n  reopen:\n    enabled: false\n  reviewer:\n    enabled: false\n  transfer:\n    enabled: false\n```\n\n## Getting started\n\nFirst you will need to create a GitHub app. Add the permissions required for the commands you are using (see next section), and tick \"Subscribe to events\" \u003e \"Issue comment\"\n\nAdd a webhook to the app pointing at your endpoint, the path for the webhook receiver is `\u003cyour-app-endpoint\u003e/api/github/webhooks`.\n\nThis app is multiple organization aware and doesn't need any additional configuration to run in multiple organizations, you just need to install it on them.\n\n_Note: You can't interact across organizations, like requesting reviews from teams in different organizations or transferring issues, this is a GitHub limitation._\n\n### Local development\n\nThe easiest way to develop this locally is to use [smee](https://smee.io).\n\nRun `smee --path /api/github/webhooks` and point your webhook to the smee url that is outputted e.g. https://smee.io/Mrl4d3W9AUxeaaa\n\nThe application runs on port 3000 by default, this can be customized with the `PORT` environment variable.\n\nYou can also use the npm script `npm run tunnel` which will run smee for you.\n\n### Chart deployment\n\nYou can deploy this application to Kubernetes with the helm chart included in this repo:\n\n```\nhelm repo add github-comment-ops https://timja.github.io/github-comment-ops\nhelm install github-comment-ops github-comment-ops/github-comment-ops\n```\n\nSee more in the [chart README](charts/github-comment-ops/README.md)\n\n### Required environment variables\n\n- `GITHUB_APP_ID`\n- `GITHUB_APP_PRIVATE_KEY`\n  - Either the private key as a string or a file path prefixed by `file:`, e.g. `file:my-key.pem`\n- `WEBHOOK_SECRET`\n\n## Supported commands\n\n### /close\n\nCloses the current issue\n\n#### Permissions required\n\n- Issues\n  - Read and write\n\n### /label \u003clabel1,label2,...\u003e\n\nAdds a label to the current issue or pull request\n\n#### Permissions required\n\n- Issues\n  - Read and write\n- Pull requests\n  - Read and write\n\n### /remove-label \u003clabel1,label2,...\u003e\n\nRemoves a label from the current issue or pull request\n\n#### Permissions required\n\n- Issues\n  - Read and write\n- Pull requests\n  - Read and write\n\n### /reopen\n\nReopens the current issue\n\n#### Permissions required\n\n- Issues\n  - Read and write\n\n### /reviewer(s) \u003creviewer1[, ]reviewer2[, ]@org/team1...\u003e\n\nAdds reviewers to the pull request.\n\n\u003c!-- the GitHub API doesn't error in this case it comes back successful --\u003e\n\n_Note: If a team exists but the team doesn't have read access to the repository this will silently fail._\n\n#### Permissions required\n\n- Pull requests\n  - Read and write\n- Organizations -\u003e Members\n  - Read-only\n\n### /transfer \u003cdestination_repo\u003e\n\nTransfers a GitHub issue to another repository in the same organization.\n\n#### Permissions required\n\n- Contents\n  - Read and write\n- Issues\n  - Read and write\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftimja%2Fgithub-comment-ops","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftimja%2Fgithub-comment-ops","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftimja%2Fgithub-comment-ops/lists"}