Skip to content

Generate top dependents report #69

Generate top dependents report

Generate top dependents report #69

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@11bd71901bbe5b1630ceea73d27597364c9af683
- name: Set up Python
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b
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@v7
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]>