Skip to content

Regularly Scheduled GitHub Actions πŸš€ Diff Workflow #2

Regularly Scheduled GitHub Actions πŸš€ Diff Workflow

Regularly Scheduled GitHub Actions πŸš€ Diff Workflow #2

Workflow file for this run

name: GitHub Actions Diff
run-name: Regularly Scheduled GitHub Actions πŸš€ Diff Workflow
on:
push:
schedule:
- cron: '39 9 * * *'
- cron: '39 9 * * *'
jobs:
Diff-ads-txt:
runs-on: ubuntu-latest
steps:
- run: echo "πŸŽ‰ The job was automatically triggered by scheduled cron event."
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
- run: echo "πŸ”Ž Attempting to diff url contents"
- name: Diff
run: |
diff <(curl https://config.playwire.com/dyn_ads/1025030/74482/ads.txt) <(curl https://pvpivs.com/searchStr.html)
- run: echo "πŸ’‘ The diff command has completed."
- run: echo "🍏 This job's status is ${{ job.status }}."