PR and Issue Activity Reminder via Slack #36
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PR and Issue Activity Reminder via Slack | |
# on: | |
# schedule: | |
# - cron: '0 10 */2 * *' # Runs at 10:00 AM UTC every 2 days | |
# workflow_dispatch: | |
on: | |
schedule: | |
- cron: '*/5 * * * *' # Runs every 5 minutes | |
workflow_dispatch: | |
jobs: | |
send-reminders: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- name: Debug Environment | |
run: | | |
echo "Current directory: $(pwd)" | |
echo "Directory contents:" | |
ls -la | |
echo "Python version:" | |
python --version | |
echo "Pip version:" | |
pip --version | |
echo "System information:" | |
uname -a | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install PyGithub requests | |
pip list | |
- name: Send PR and issue activity reminders via Slack | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
ORG_NAME: ${{ secrets.ORG_NAME }} | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
run: | | |
python - <<EOF | |
import os | |
import requests | |
from github import Github | |
def get_org_repositories(org_name, github_token): | |
g = Github(github_token) | |
org = g.get_organization(org_name) | |
return org.get_repos() | |
def get_pr_issue_activity_from_repo(repo): | |
pr_issue_activity = [] | |
# Fetch recent issues | |
issues = repo.get_issues(state='open') | |
for issue in issues: | |
pr_issue_activity.append({ | |
'type': 'Issue', | |
'title': issue.title, | |
'url': issue.html_url | |
}) | |
# Fetch recent pull requests | |
pulls = repo.get_pulls(state='open') | |
for pull in pulls: | |
pr_issue_activity.append({ | |
'type': 'PullRequest', | |
'title': pull.title, | |
'url': pull.html_url | |
}) | |
return pr_issue_activity | |
def send_slack_reminder(activities, webhook_url): | |
if not activities: | |
return | |
message = '*Reminder for the Notification*\n' | |
message += f'There are {len(activities)} open PRs/issues:\n' | |
for activity in activities: | |
message += f"• {activity['type']}: <{activity['url']}|{activity['title']}>\n" | |
payload = { | |
'text': message, | |
'username': 'GitHub Notification Bot', | |
'icon_emoji': ':github:' | |
} | |
response = requests.post(webhook_url, json=payload) | |
if response.status_code != 200: | |
print('f"Failed to send Slack message. Status code: {response.status_code}"') | |
print('"Response: {response.text}"') | |
else: | |
print('"Message sent successfully."') | |
# Get environment variables | |
github_token = os.environ['GITHUB_TOKEN'] | |
org_name = os.environ['ORG_NAME'] | |
slack_webhook_url = os.environ['SLACK_WEBHOOK_URL'] | |
# Get organization repositories | |
repositories = get_org_repositories(org_name, github_token) | |
# Gather all activities | |
all_activities = [] | |
for repo in repositories: | |
activities = get_pr_issue_activity_from_repo(repo) | |
all_activities.extend(activities) | |
# Send Slack reminders | |
if all_activities: | |
send_slack_reminder(all_activities, slack_webhook_url) | |
EOF | |
- name: Debug environment variables | |
run: | | |
echo "GITHUB_TOKEN: $GITHUB_TOKEN" | |
echo "ORG_NAME: $ORG_NAME" | |
echo "SLACK_WEBHOOK_URL: $SLACK_WEBHOOK_URL" # Be careful not to print the entire URL for security reasons. | |
echo "Webhook length: ${#SLACK_WEBHOOK_URL}" # Check if the length is non-zero | |
echo "Partial webhook: ${SLACK_WEBHOOK_URL:0:10}..." # Print partial webhook to confirm it’s being passed | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
ORG_NAME: ${{ secrets.ORG_NAME }} | |
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} |