-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (32 loc) · 895 Bytes
/
fetch.yml
File metadata and controls
39 lines (32 loc) · 895 Bytes
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
36
37
38
39
# .github/workflows/fetch.yml
# Fetch the download statistics
name: fetch
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
jobs:
fetch_statistics:
name: Fetch the download statistics
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Fetch the download statistics
run: |
python fetch.py
- name: Commit changes
run: |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git add archives
git commit -m "Update the download statistics" || true
git push -u origin main