-
Notifications
You must be signed in to change notification settings - Fork 1
44 lines (36 loc) · 1.05 KB
/
update.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
name: Update Data
on:
schedule:
# # At 18:30 UTC on Sunday (12.00 mid night in Sri Lanka)
- cron: "30 18 * * 0"
# # At 18:30 UTC on everyday (12.00 mid night in Sri Lanka)
# - cron: "0 0 * * *"
# Enables a button on Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@master
with:
ref: main
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install Python Dependencies
run: |
python -m pip install --upgrade pip
pip install requests PyYAML
- name: Run the Python script
run: |
cd ./python_scripts/
python update.py
- name: Commit and push into the main branch
run: |
git config user.name github-actions
git config user.email [email protected]
git add --all
git commit -m "Dynamic data updated" || echo "No changes to commit"
git push