Skip to content

Run script

Run script #13

# This workflow will install Python dependencies and run the script
name: Run script
on:
workflow_dispatch: # add run button in github
schedule:
- cron: "0 13 * * 1"
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.x
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run script
env:
HDX_SITE: ${{ secrets.HDX_SITE }}
HDX_KEY: ${{ secrets.HDX_BOT_SCRAPERS_API_TOKEN }}
PREPREFIX: ${{ secrets.PREPREFIX }}
USER_AGENT: ${{ secrets.USER_AGENT }}
run: |
python run.py
- name: Commit error log
if: always()
uses: stefanzweifel/git-auto-commit-action@v4
with:
file_pattern: errors*.txt
commit_message: automatic - errors updated
push_options: '--force'
skip_dirty_check: false
- name: Send mail
if: failure()
uses: dawidd6/action-send-mail@v2
with:
server_address: ${{secrets.EMAIL_SERVER}}
server_port: ${{secrets.EMAIL_PORT}}
username: ${{secrets.EMAIL_USERNAME}}
password: ${{secrets.EMAIL_PASSWORD}}
subject: "FAILED: ${{github.repository}} run job"
body: file://errors.txt
to: ${{secrets.EMAIL_LIST}}
from: ${{secrets.EMAIL_FROM}}
content_type: text/html