{"id":27696981,"url":"https://github.com/sonichigo/github-org-reminder","last_synced_at":"2026-02-17T23:03:04.461Z","repository":{"id":256381508,"uuid":"855123846","full_name":"Sonichigo/GitHub-Org-Reminder","owner":"Sonichigo","description":"GitHub Action is designed to send reminders to Slack channels about pending pull requests in your repository. This helps teams stay informed and ensures that pull requests receive timely reviews","archived":false,"fork":false,"pushed_at":"2025-04-09T12:50:39.000Z","size":31,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-13T10:57:29.740Z","etag":null,"topics":["github","good-first-contribution","notifications","python"],"latest_commit_sha":null,"homepage":"https://gh-slack-reminder.vercel.app","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Sonichigo.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,"zenodo":null}},"created_at":"2024-09-10T10:55:53.000Z","updated_at":"2025-04-09T12:50:45.000Z","dependencies_parsed_at":null,"dependency_job_id":"24e83946-12ec-409c-925c-1f66729b3d04","html_url":"https://github.com/Sonichigo/GitHub-Org-Reminder","commit_stats":null,"previous_names":["sonichigo/gh_slack_reminder","sonichigo/roaster_slackbot","sonichigo/github-org-reminder"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/Sonichigo/GitHub-Org-Reminder","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sonichigo%2FGitHub-Org-Reminder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sonichigo%2FGitHub-Org-Reminder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sonichigo%2FGitHub-Org-Reminder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sonichigo%2FGitHub-Org-Reminder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Sonichigo","download_url":"https://codeload.github.com/Sonichigo/GitHub-Org-Reminder/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sonichigo%2FGitHub-Org-Reminder/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29561783,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-17T21:50:49.831Z","status":"ssl_error","status_checked_at":"2026-02-17T21:46:15.313Z","response_time":100,"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","good-first-contribution","notifications","python"],"created_at":"2025-04-25T15:26:48.365Z","updated_at":"2026-02-17T23:03:04.438Z","avatar_url":"https://github.com/Sonichigo.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"The `gh_slack_reminder` GitHub Action is designed to send reminders to Slack channels about pending pull requests in your repository. This helps teams stay informed and ensures that pull requests receive timely reviews.\r\n\r\n## Features\r\n\r\n- **Automated Slack Notifications**: Sends messages to specified Slack channels about open pull requests.\r\n- **Customizable Queries**: Tailor the GitHub search queries to filter pull requests based on labels, status, or other criteria.\r\n- **Flexible Scheduling**: Integrate with GitHub Actions' scheduling to send reminders at desired intervals.\r\n\r\n## Prerequisites\r\n\r\nBefore setting up the action, ensure you have:\r\n\r\n- **Slack Incoming Webhook URL**: This is required to send messages to your Slack workspace.\r\n- **GitHub Personal Access Token (PAT)**: Needed to authenticate and fetch pull request data.\r\n\r\n## Setup Instructions\r\n\r\n1. **Obtain Slack Incoming Webhook URL**:\r\n   - Navigate to your Slack workspace and create an incoming webhook.\r\n   - Note down the provided webhook URL; it will be used in the GitHub Action.\r\n\r\n2. **Generate GitHub Personal Access Token**:\r\n   - Go to your GitHub account's settings.\r\n   - Under \"Developer settings,\" select \"Personal access tokens\" and generate a new token with the necessary permissions.\r\n   - Keep this token secure; it will be used to authenticate API requests.\r\n\r\n3. **Store Secrets in GitHub Repository**:\r\n   - In your repository, navigate to \"Settings\" \u003e \"Secrets and variables\" \u003e \"Actions.\"\r\n   - Add the following secrets:\r\n     - `SLACK_WEBHOOK_URL`: Your Slack incoming webhook URL.\r\n     - `GITHUB_TOKEN`: Your GitHub Personal Access Token.\r\n\r\n4. **Configure the GitHub Action Workflow**:\r\n   - Create or update the workflow YAML file (e.g., `.github/workflows/slack_reminder.yml`) in your repository with the following content:\r\n\r\n     ```yaml\r\n     name: Slack Pull Request Reminder\r\n\r\n     on:\r\n       schedule:\r\n         - cron: '0 9 * * 1-5'  # Runs at 9 AM UTC, Monday to Friday\r\n       workflow_dispatch:\r\n\r\n     jobs:\r\n       slack-reminder:\r\n         runs-on: ubuntu-latest\r\n         steps:\r\n           - name: Checkout Repository\r\n             uses: actions/checkout@v3\r\n\r\n           - name: Send Slack Reminder\r\n             uses: Sonichigo/gh_slack_reminder@main\r\n             with:\r\n               SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}\r\n               GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\r\n               ORG_NAME: 'your-slack-org'\r\n     ```\r\n\r\n     **Notes**:\r\n     - The `cron` schedule is set to run the action at 9 AM UTC from Monday to Friday. Adjust the timing as needed.\r\n     - The `slack_channel` input specifies the Slack channel where reminders will be sent. Replace `'your-slack-org'` with your org name, where the bot is added.\r\n     - The `github_query` input allows you to customize the search criteria for pull requests. The example above filters for open pull requests that require a review.\r\n\r\n5. **Commit and Push the Workflow**:\r\n   - Save the workflow file and push it to your repository's main branch.\r\n   - The action will now run based on the defined schedule or can be triggered manually via the \"Run workflow\" button in the Actions tab.\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsonichigo%2Fgithub-org-reminder","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsonichigo%2Fgithub-org-reminder","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsonichigo%2Fgithub-org-reminder/lists"}