-
-
Notifications
You must be signed in to change notification settings - Fork 2
Script ‐ Fetch GitHub issue comments for specified GitHub Handles
Bonnie Wolfe edited this page Oct 20, 2025
·
2 revisions
We need to use the GitHub Issue API to fetch issue comments for each GitHub handle so that we can use the data to generate skills learnt and resume-ready bullet points
Proof of Concept
- ai-skills-assessor/.github/workflows/fetch-issue-comments.yaml
- ai-skills-assessor/scripts/fetch-issue-comments.py
- ai-skills-assessor/data/issue_comments.json
-
fetch-issue-comments.yaml:
- This GitHub Actions workflow installs the necessary dependencies and runs the Python script. It's triggered either when an issue comment is created or manually from the Actions tab.
-
fetch-issue-comments.py:
- This script uses the GitHub REST API to fetch all issue comments from the website repo (where the main contributor activity is). It filters the results to include only comments from the specific contributors we're targeting.
-
issue_comments.json:
- This file stores the output from the Python script (about 5000 lines). It contains metadata and comment bodies from the selected contributors.