-
Notifications
You must be signed in to change notification settings - Fork 13
35 lines (35 loc) · 1.21 KB
/
dependents-report.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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]>