matrix-art

An image gallery for Matrix
git clone git://archive.git.mtrnord.blog/MTRNord/matrix-art.git
Log | Files | Refs | README | LICENSE

dependabot.yml (973B)


      1 version: 2
      2 updates:
      3   # Enable version updates for npm
      4   - package-ecosystem: "npm"
      5     # Look for `package.json` and `lock` files in the `root` directory
      6     directory: "/"
      7     # Check the npm registry for updates every day (weekdays)
      8     schedule:
      9       interval: "daily"
     10     reviewers:
     11       - "MTRNord"
     12     assignees:
     13       - "MTRNord"
     14     open-pull-requests-limit: 1000
     15 
     16   # Enable version updates for Docker
     17   - package-ecosystem: "docker"
     18     # Look for a `Dockerfile` in the `root` directory
     19     directory: "/"
     20     # Check for updates once a week
     21     schedule:
     22       interval: "weekly"
     23     reviewers:
     24       - "MTRNord"
     25     assignees:
     26       - "MTRNord"
     27     open-pull-requests-limit: 10
     28 
     29   # Enable version updates for GitHub Actions
     30   - package-ecosystem: "github-actions"
     31     directory: "/"
     32     # Check for updates once a week
     33     schedule:
     34       interval: "weekly"
     35     reviewers:
     36       - "MTRNord"
     37     assignees:
     38       - "MTRNord"
     39     open-pull-requests-limit: 10