Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.opentaco.dev/llms.txt

Use this file to discover all available pages before exploring further.

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