-
-
Notifications
You must be signed in to change notification settings - Fork 23
45 lines (38 loc) · 1.24 KB
/
update-data.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
38
39
40
41
42
43
44
45
name: Update data
on:
workflow_dispatch:
schedule:
- cron: "0 0 1 * *" # run once a month
jobs:
resources:
name: Update resources
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
pip install -r requirements-data.txt
pip install -r requirements-test.txt
- name: Update data
run: |
python scripts/updatedata.py
- name: Run pre-commit
continue-on-error: true
run: |
pre-commit run --files codicefiscale/data/countries.json codicefiscale/data/municipalities.json
- name: Commit data
uses: test-room-7/action-update-file@v1
with:
file-path: |
codicefiscale/data/countries.json
codicefiscale/data/municipalities.json
commit-msg: "Updated `countries.json` and/or `municipalities.json` data."
committer-name: "Fabio Caccamo [bot]"
committer-email: "[email protected]"
github-token: ${{ secrets.WORKFLOWS_UPDATE_DATA_TOKEN }}