Run Scripts #8
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. | |
- cron: '37 15 * * *' | |
# Run update_BoW.py on the 1st of every month | |
- cron: '0 19 1 * *' | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
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 on the 1st of every month) | |
if: ${{ github.event_name == 'schedule' && github.event.cron == '0 19 1 * *' }} | |
run: python BoW/update_BoW.py | |
- name: Commit files | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "akanksha1131" | |
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 |