Bump requests from 2.31.0 to 2.32.0 in /scraper #20
Workflow file for this run
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: Scraper Dry Run | |
on: | |
pull_request: | |
paths: | |
- scraper/** | |
jobs: | |
test-run-github-scraper: | |
name: Test run GitHub Scraper | |
runs-on: ubuntu-latest | |
permissions: | |
issues: read | |
pull-requests: read | |
steps: | |
- uses: actions/checkout@v4 | |
- name: setup python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: "3.10" | |
- name: Install dependencies | |
run: pip install -r scraper/requirements.txt | |
- name: Scrape data from GitHub | |
run: python scraper/src/github.py ${{ github.repository_owner }} data/github -l DEBUG | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Generate markdown files for new contributors | |
run: node scripts/generateNewContributors.js | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: output | |
retention-days: 5 | |
path: | | |
data | |
contributors |