{"id":21921443,"url":"https://github.com/firelemons/slack-single-reminder-script","last_synced_at":"2026-05-06T08:35:39.796Z","repository":{"id":103679775,"uuid":"326307506","full_name":"FireLemons/slack-single-reminder-script","owner":"FireLemons","description":"Every time a reminder message is sent the previous reminder message is deleted.","archived":false,"fork":false,"pushed_at":"2021-05-13T00:37:38.000Z","size":19,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-10T13:04:14.415Z","etag":null,"topics":["reminder","ruby","slack","slack-bot"],"latest_commit_sha":null,"homepage":"","language":"Ruby","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/FireLemons.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":"2021-01-03T01:53:02.000Z","updated_at":"2021-05-13T00:37:40.000Z","dependencies_parsed_at":"2023-07-06T23:31:24.417Z","dependency_job_id":null,"html_url":"https://github.com/FireLemons/slack-single-reminder-script","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/FireLemons/slack-single-reminder-script","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FireLemons%2Fslack-single-reminder-script","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FireLemons%2Fslack-single-reminder-script/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FireLemons%2Fslack-single-reminder-script/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FireLemons%2Fslack-single-reminder-script/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/FireLemons","download_url":"https://codeload.github.com/FireLemons/slack-single-reminder-script/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FireLemons%2Fslack-single-reminder-script/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32684890,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-06T08:33:17.875Z","status":"ssl_error","status_checked_at":"2026-05-06T08:33:17.221Z","response_time":117,"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":["reminder","ruby","slack","slack-bot"],"created_at":"2024-11-28T20:24:55.185Z","updated_at":"2026-05-06T08:35:39.779Z","avatar_url":"https://github.com/FireLemons.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Slack Single Seminder Script\nEvery time a reminder message is sent the previous reminder message is deleted.\n\n# Setup\ninstall ruby if not already installed  \n`bundle install` to install gems  \n\n### Bot Account Setup\n1. Register for a developer account on slack over at https://api.slack.com/apps\n2. Enable bots on the developer account.  \n![account features screenshot](https://raw.githubusercontent.com/FireLemons/DocumentationMaterials/main/img/app-features.png)\n3. Enable `channels:read` and `chat:write` on the app's scopes  \n![account scopes screenshot](https://raw.githubusercontent.com/FireLemons/DocumentationMaterials/main/img/app-permissions.png)\n4. Add the app to a workspace and `/invite` the bot to the channel where messages will be posted  \n![invite bot screenshot](https://raw.githubusercontent.com/FireLemons/DocumentationMaterials/main/img/invite-bot.png)\n  \n### Configuration\n#### `config.json`\nCreate a file called `config.json` in the same directory containing the repo root  \n\n    dir/\n      config.json\n      slack-single-reminder-script/\n\nIt contains keys  \n - channel: the id of the channel to post messages to. This can be found at the end of the channel url. For example https://app.slack.com/client/T01HPM3CFJA/C01HTBZ264V would have an id of C01HTBZ264V  \n - messages: an object where each key contains the message of a different reminder you would like to send  \n - token: the oauth token for the slack app  \n\nExample:  \n  \n    {\n      \"channel\": \"your channel id\",\n      \"messages\": {\n        \"main\": \"test\",\n        \"emoji\": \":eyes:\"\n      },\n      \"token\": \"xoxb-...\"\n    }\n\n`remind.rb` will send the message for each message name passed to it and delete the previous message of the same name passed to it \nFor example `ruby remind.rb emoji` will send the message `:eyes:` to the channel  \nrunning the command a second time will delete the first `:eyes:` and post `:eyes:` again  \n\nAt this point it's a good idea to test your config by running remind.rb manually  \n\n#### `config/schedule.rb`  \nThis file determines when the reminder script will be run.  \nMore information about configuring this file can be found at https://github.com/javan/whenever  \nAn example is found in this repo\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffirelemons%2Fslack-single-reminder-script","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffirelemons%2Fslack-single-reminder-script","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffirelemons%2Fslack-single-reminder-script/lists"}