Create PR Stats #280
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: "Create PR Stats" | |
on: | |
workflow_dispatch: | |
pull_request: # run if the file changed on a PR to rolling | |
branches: | |
- rolling | |
paths: | |
- 'make_help_scripts/create_pr_stats.py' | |
push: # run if the file changed by pushes to rolling | |
branches: | |
- rolling | |
paths: | |
- 'make_help_scripts/create_pr_stats.py' | |
schedule: | |
# Run every morning to ensure component documentation is up to date on deployment | |
- cron: '23 3 * * *' | |
jobs: | |
create-pr-stats: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
cache: 'pip' | |
- name: Install Python dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install --upgrade --requirement requirements.txt | |
shell: bash | |
- name: Get stats | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
python make_help_scripts/create_pr_stats.py | |
shell: bash | |
- name: Cache stats | |
uses: actions/cache/save@v4 | |
with: | |
key: reviewer-stats-${{ github.run_id }} | |
path: ~/reviews | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v4.4.0 | |
with: | |
name: pr-stats | |
path: ~/reviews |