{"id":18724438,"url":"https://github.com/anthonynguyen/preminder","last_synced_at":"2025-09-12T00:20:50.148Z","repository":{"id":145373094,"uuid":"100069353","full_name":"anthonynguyen/preminder","owner":"anthonynguyen","description":"Create reminders about Github pull requests","archived":false,"fork":false,"pushed_at":"2017-08-24T18:19:00.000Z","size":135,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-19T18:18:18.773Z","etag":null,"topics":["github","reminders","rust"],"latest_commit_sha":null,"homepage":"","language":"Rust","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/anthonynguyen.png","metadata":{"files":{"readme":"README.md","changelog":null,"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":"2017-08-11T20:52:43.000Z","updated_at":"2017-08-16T15:32:43.000Z","dependencies_parsed_at":"2023-03-28T01:02:42.715Z","dependency_job_id":null,"html_url":"https://github.com/anthonynguyen/preminder","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/anthonynguyen/preminder","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anthonynguyen%2Fpreminder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anthonynguyen%2Fpreminder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anthonynguyen%2Fpreminder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anthonynguyen%2Fpreminder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/anthonynguyen","download_url":"https://codeload.github.com/anthonynguyen/preminder/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anthonynguyen%2Fpreminder/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274729796,"owners_count":25338775,"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-11T02:00:13.660Z","response_time":74,"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"}},"keywords":["github","reminders","rust"],"created_at":"2024-11-07T14:06:36.766Z","updated_at":"2025-09-12T00:20:50.107Z","avatar_url":"https://github.com/anthonynguyen.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# `preminder`\n\npreminder is a Rust program that creates reminders about Github pull requests.\n\n## Configuration\n\nConfiguration is done via JSON/YAML/TOML. A sample YAML configuration file could\nlook like this:\n\n```yaml\ngithub:\n  token: secret!\n  host: github.organization.org\n  subjects:\n    - user1\n    - user2\n\nrecent: 6h\nstale: 12h\n\noutputs:\n  - type: stdout\n    disable: true\n```\n\n## Outputs\n\nEvery output has an optional `disable` boolean option to disable the output.\n\n### STDOUT\n\nThe `stdout` output takes no configuration.\n\n### Hipchat\n\n`hipchat` output configuration options:\n\n+ `url` - address to Hipchat instance\n+ `room` - room number to send messages to\n+ `token` - API token with at least a scope of `send_notification`\n+ `from` - *optional* string to include next to the username\n+ `colour` - *optional* colour to use as message background\n+ `notify` - *optional* whether or not a desktop notification should be\n  triggered\n+ `template` - *optional* custom Handlebars template to format the message\n+ `max_results` - *optional* limit results for each of the three lists\n\nTemplate variables:\n\n+ `now` - current time (in the following format: `Jan 12,  8:52pm`)\n+ `recent_period` - human-friendly formatting of the `recent` option\n+ `stale_period` - human-friendly formatting of the `stale` option\n+ `num_total` - total open PRs\n+ `num_opened` - number of PRs recently opened\n+ `num_updated` - number of PRs recently updated\n+ `num_stale` - number of old PRs\n+ `opened` - list of recently opened PRs\n+ `updated` - list of recently updated PRs\n+ `stale` - list of old PRs\n\nThe structure of a PR object, as found in the `opened`, `updated`, or `stale`\nlists can be found in `src/types.rs`.\n\n### Email\n\n`email` output configuration options:\n\n+ `smtp_server` - address of the SMTP server to use for sending emails\n+ `smtp_port` - *optional* port of the SMTP server (default: `25`)\n+ `smtp_username` - *optional* SMTP username\n+ `smtp_password` - *optional* SMTP password\n+ `from_address` - email address to use in the `from:` field\n+ `from_name` - *optional* name to use in the `from:` field\n+ `to_address` - email address to send reminder to\n+ `subject_template` - *optional* custom Handlebars template to format the\n   email's subject\n+ `body_template` - *optional* custom Handlebars template to format the\n   email's body\n\n**Note:** `subject_template` and `body_template` use the same variables as\ndescribed in the Hipchat output.\n\n## License\n\npreminder is licensed under the MIT license. Please see the `LICENSE` file for\nmore details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanthonynguyen%2Fpreminder","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fanthonynguyen%2Fpreminder","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanthonynguyen%2Fpreminder/lists"}