{"id":15669816,"url":"https://github.com/mallozup/doghub","last_synced_at":"2026-02-09T19:02:19.608Z","repository":{"id":141721172,"uuid":"199529713","full_name":"MalloZup/doghub","owner":"MalloZup","description":"a functional stale bot for Github Issue and PRs.","archived":false,"fork":false,"pushed_at":"2019-08-07T07:52:02.000Z","size":42,"stargazers_count":3,"open_issues_count":6,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-22T01:49:45.456Z","etag":null,"topics":["bot","clojure","data-driven","functional-programming","github","monitor","stale"],"latest_commit_sha":null,"homepage":"","language":"Clojure","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MalloZup.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"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}},"created_at":"2019-07-29T21:34:50.000Z","updated_at":"2022-01-14T01:41:18.000Z","dependencies_parsed_at":null,"dependency_job_id":"5a5c30d3-e8eb-4853-9cab-6d39f6321178","html_url":"https://github.com/MalloZup/doghub","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/MalloZup/doghub","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MalloZup%2Fdoghub","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MalloZup%2Fdoghub/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MalloZup%2Fdoghub/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MalloZup%2Fdoghub/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MalloZup","download_url":"https://codeload.github.com/MalloZup/doghub/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MalloZup%2Fdoghub/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29277908,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-09T17:15:22.002Z","status":"ssl_error","status_checked_at":"2026-02-09T17:14:42.395Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["bot","clojure","data-driven","functional-programming","github","monitor","stale"],"created_at":"2024-10-03T14:41:24.571Z","updated_at":"2026-02-09T19:02:19.570Z","avatar_url":"https://github.com/MalloZup.png","language":"Clojure","funding_links":[],"categories":[],"sub_categories":[],"readme":"# doghub\n\nDoghub monitors stale Issues and Pull Requests for your different Github projects in a private and centralized manner. You can use doghub for both your personal and professional projects.\n\n# Table of Contents\n* [Why use doghub?](#why-use-doghub)\n* [Main features](#main-features)\n* [Quickstart](#quickstart)\n\n## Why use doghub?\n\n- Allows maintainers to be independent without the need for an external service in their repo (instead you can use a token and manage the daemon yourself on your server)\n\n- Offers full centralized control over your project(s)\n\n\n## Main features:\n\n1. Doghub will comment on stale Issues and PRs. You can configure a limit for the number of days a PR or an issue can remain inactive on the repo. (At present, this is the only feature in doghub. In the future, there is a plan to support a custom handler, which will let the user decide to apply a specific action for stale issues (e.g., close, comment, label etc.))\n\n2. Doghub can work either with a list of repositories or a list of organisations. (An organisation can own multiple repositories, while a repository relates to one project)\n\n\n## Quickstart\n\n1) Create  `doghub.edn` file:\n\n```\n{\n\n  :github-config {\n     :token \"my-token\"\n  }\n\n    \n  :repositories [\"MalloZup/missile\", \"MalloZup/doghub\"]\n  \t;; the list of Github repositories that you want monitored in terms of stale Issues and PRs\n\n  :issue-days 130 \n  \t;; the number of days that an issue can remain inactive\n\n  :prs-days 2 \n  \t;; the number of days for Pull-requests to remain unactioned. PRs older than this will require action.\n\n\n ;; by default doghub will create a comment on the issue or PR. You can customize the prefix message.\n\n\n :prefix-msg \"autogenerated with https://github.com/MalloZup/doghub: \"\n\n\n ;; the message is composed of prefix-msg + std-msg.  std-msg will be \" the PR/issue is older than 'x'(10) days. \n  \n ;; the bot will just update the comments.  RATE-LIMITING will be logged in case requests exceed a specified limit.\n\n\n}\n\n```\n\nInstead of a list of repositories you can also use a list of organisations (see the `doghub.edn.example` config file).\n\n\n2) Start the daemon:\n\n```java -jar doghub-VERSION-standalone.jar```\n\nThe configuration file should be in the same dir where you start the daemon. Otherwise use the ENV variable `CONFIG_FILE_PATH` to setup a config file from another location.\n\n\n\nIf you use doghub, feel free to add a PR of your project!\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmallozup%2Fdoghub","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmallozup%2Fdoghub","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmallozup%2Fdoghub/lists"}