Run Scripts #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run Scripts | |
on: | |
schedule: | |
# Run newday.py every day at 3 am utc (8.30 am Ist) | |
- cron: '0 3 * * *' | |
# Run update_BoW.py every 10 days at 7 am | |
- cron: '0 7 */10 * *' | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.9' | |
- name: Install Python packages | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Execute newday.py | |
run: python project/newday.py | |
- name: Execute update_BoW.py (only every 10 days) | |
if: ${{ github.event_name == 'schedule' && github.event.cron == '0 7 */10 * *' }} | |
run: python BoW/update_BoW.py | |
- name: Commit files | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action" | |
git add -A | |
git diff-index --quiet HEAD || (git commit -a -m "Updated logs" --allow-empty) | |
- name: Push changes | |
uses: ad-m/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: main |