forked from mouredev/roadmap-retos-programacion
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (26 loc) · 796 Bytes
/
stats.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
name: Stats
on:
schedule:
- cron: '0 0 * * *'
jobs:
build:
if: github.repository == 'mouredev/roadmap-retos-programacion' && github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Run script
run: python ./Roadmap/stats.py
- name: Commit and Push changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Update stats
commit_user_name: Brais Moure [GitHub Actions]
commit_user_email: [email protected]
commit_author: mouredev <[email protected]>