PSA: GitHub Dependabot now supports Julia

After trials, and dependabot exclude-paths errors, and discussions with AI, we found a possible solution - or rather a workaround - which is being tried right now. Here ist the link to the article, and this is now in my dependabot.toml:

toml code
updates:
  - package-ecosystem: "github-actions"
    directory: "/"
    schedule:
      interval: "weekly"
    groups:
      github-actions:
        patterns:
          - "*"

  - package-ecosystem: "julia"
    directories:
      - "/"
    schedule:
      interval: "weekly"
    groups:
      all-julia-packages:
        patterns:
          - "*"

  - package-ecosystem: "julia"
    directory: "/docs"
    schedule:
      interval: "monthly"
    ignore:
      - dependency-name: "*"

  - package-ecosystem: "julia"
    directory: "/test"
    schedule:
      interval: "monthly"
    ignore:
      - dependency-name: "*"