Skip to content

Generate top dependents report #67

Generate top dependents report

Generate top dependents report #67

name: Generate top dependents report
on:
schedule:
- cron: '0 14 * * 1'
workflow_dispatch:
jobs:
create-dependents-report:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Set up Python
uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c
with:
python-version: '3.11'
cache: 'pip'
cache-dependency-path: 'dependents-report/requirements.txt'
- name: Fetch requirements
run: python -m pip install -r dependents-report/requirements.txt
- name: Run script
run: python dependents-report/get-dependents.py
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Create PR
uses: peter-evans/create-pull-request@v6
with:
commit-message: Regenerate dependents report
title: Regenerate dependents report
body: This PR updates the dependents report.
base: main
branch: actions-regenerate-dependents-report
delete-branch: true
signoff: true
author: GitHub <[email protected]>
committer: GitHub <[email protected]>