Skip to main content
Use this mode when you want drift detection to run only in GitHub Actions with no OpenTaco application dependency.

Sample workflow

name: Drift Detection

on:
  workflow_dispatch:
  schedule:
    - cron: "0 0 * * *" # daily at 00:00 UTC

jobs:
  detect-drift:
    runs-on: ubuntu-latest
    steps:
      - name: digger drift detection
        uses: diggerhq/digger@vLatest
        with:
          mode: drift-detection
          no-backend: true

Common additions