Skip to content

FN Page Data

FN Page Data #2442

Workflow file for this run

name: FN Page Data
on:
schedule:
- cron: '0 * * * *' # Runs every hour
permissions: write-all
jobs:
open_web_browser:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Install Selenium
run: |
pip install selenium
- name: Run script
run: |
python page.py
- name: Commit and push
run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub Actions"
git pull
git add page/timestamp.json page/context_*.json
git commit -m "Update page files"
git push