Skip to content

Daily check

Daily check #80

Workflow file for this run

on:
schedule:
- cron: '30 5,17 * * *'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
name: Daily check
jobs:
audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/audit-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
notifications:
# if: github.ref == 'refs/heads/master'
if: always()
name: "Notifications"
timeout-minutes: 1
runs-on: ubuntu-22.04
needs: [ check-unused-dependencies, audit ]

Check failure on line 24 in .github/workflows/daily.yml

View workflow run for this annotation

GitHub Actions / Daily check

Invalid workflow file

The workflow is not valid. .github/workflows/daily.yml (Line: 24, Col: 14): Job 'notifications' depends on unknown job 'check-unused-dependencies'.
steps:
- name: Discord notifications on failure
# https://stackoverflow.com/a/74562058/134409
if: ${{ always() && contains(needs.*.result, 'failure') }}
# https://github.com/marketplace/actions/actions-status-discord
uses: sarisia/actions-status-discord@v1
with:
webhook: ${{ secrets.DISCORD_WEBHOOK }}
# current job is a success, but that's not what we're interested in
status: failure