Skip to content

Create report

Create report #26

Workflow file for this run

name: Create report
on:
schedule:
- cron: '0 4 * * *'
workflow_dispatch:
jobs:
create-report:
runs-on: ubuntu-latest
outputs:
status: ${{ steps.set-output.outputs.status }}
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 dnspython beautifulsoup4
- name: Run Website Tests
id: test
run: python main.py || echo "error" >> error.log
continue-on-error: true # This will ensure the next steps are executed even if this step fails.
- name: Set Output status
id: set-output
run: |
if [[ -f error.log ]]; then
echo "Error encountered in Website Tests"
echo "::set-output name=status::error"
else
echo "::set-output name=status::success"
fi
- 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
- name: Fail if error encountered
if: steps.set-output.outputs.status == 'error'
run: exit 1