Skip to content

Commit

Permalink
Bump actions/upload-artifact from 4.3.3 to 4.4.3 (#352)
Browse files Browse the repository at this point in the history
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.3.3 to 4.4.3.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v4.3.3...v4.4.3)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
(cherry picked from commit 1c33a63)

# Conflicts:
#	.github/workflows/pr-stats.yml
  • Loading branch information
dependabot[bot] authored and mergify[bot] committed Nov 19, 2024
1 parent 2c52e9c commit 13e2c32
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions .github/workflows/pr-stats.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: "Create PR Stats"

on:
workflow_dispatch:
pull_request: # run if the file changed on a PR to master
branches:
- master
paths:
- 'make_help_scripts/create_pr_stats.py'
push: # run if the file changed by pushes to master
branches:
- master
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/[email protected]
with:
name: pr-stats
path: ~/reviews

0 comments on commit 13e2c32

Please sign in to comment.