Skip to content

Update Status

Update Status #8190

Workflow file for this run

name: Update Status
on:
schedule:
- cron: "*/7 * * * *"
workflow_dispatch:
jobs:
updatestatus:
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: execute py script
run: |
python -m pip install --upgrade pip
pip install requests
python scrape.py
git config user.name github-actions
git config user.email [email protected]
git add .
git commit -m "status updated"
git push