Skip to content

Create report

Create report #1

name: Create report
on:
schedule:
- cron: '0 4 * * *'
workflow_dispatch:
jobs:
create-report:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Python 3.x
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: pip install requests python-whois
- name: Run Website Tests
run: python main.py
- name: Commit and push report
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git add README.md
git commit -m "Add generated report" -a || echo "No changes to commit"
git push