Skip to content

refresh config_files #177

refresh config_files

refresh config_files #177

Workflow file for this run

name: refresh config_files
on:
workflow_dispatch:
schedule:
- cron: "30 14 * * *" #runs at 12:30 UTC everyday
jobs:
refresh_config:
runs-on: ubuntu-latest
steps:
- name: checkout repo content
uses: actions/checkout@v3 # checkout the repository content to github runner.
- name: setup python
uses: actions/setup-python@v4
with:
python-version: 3.8 #install the python needed
- name: Install dependencies
run: |
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: execute py script
run: |
cat keys.txt | xargs -L 1 python main.py
cat keys.txt | xargs python main.py
git config user.name github-actions
git config user.email [email protected]
git add .
git commit -m "refresh config files"
git push