-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (31 loc) · 945 Bytes
/
calendar.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
36
37
name: Update tournaments
on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
jobs:
update-tournaments:
runs-on: ubuntu-latest
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write
steps:
- uses: actions/checkout@v4
# Set up and run python script
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r _scripts/requirements.txt
- name: Run script
run: |
python _scripts/update_tournaments.py
# Commit all changed files back to the repository
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Update tournaments
file_pattern: '*.tsv'