|
1 | | ---- |
| 1 | +# Dependabot version updates |
| 2 | +# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuring-dependabot-version-updates |
| 3 | + |
2 | 4 | version: 2 |
| 5 | +registries: |
| 6 | + nuget-github: |
| 7 | + type: nuget-feed |
| 8 | + url: https://nuget.pkg.github.com/ccdc-confidential/index.json |
| 9 | + username: ${{ secrets.CCDC_GITHUB_NUGET_FEED_USER }} |
| 10 | + password: ${{ secrets.CCDC_GITHUB_NUGET_FEED_PAT }} |
| 11 | + nuget-public: |
| 12 | + type: nuget-feed |
| 13 | + url: https://api.nuget.org/v3/index.json |
| 14 | + |
| 15 | + npm-github: |
| 16 | + type: npm-registry |
| 17 | + url: https://npm.pkg.github.com |
| 18 | + username: ${{ secrets.CCDC_GITHUB_NUGET_FEED_USER }} |
| 19 | + password: ${{ secrets.CCDC_GITHUB_NUGET_FEED_PAT }} |
| 20 | + npm-public: |
| 21 | + type: npm-registry |
| 22 | + url: https://registry.npmjs.org |
| 23 | + |
3 | 24 | updates: |
| 25 | + # Enable version updates for NuGet |
| 26 | + - package-ecosystem: "nuget" |
| 27 | + registries: "*" |
| 28 | + # Look for `*.csproj` or `*.sln` files in the `root` directory |
| 29 | + directory: "/" |
| 30 | + # Check the NuGet registry for updates every day (weekdays) |
| 31 | + schedule: |
| 32 | + interval: "daily" |
| 33 | + time: "15:30" |
| 34 | + timezone: "Europe/London" |
| 35 | + commit-message: |
| 36 | + # Prefix all commit messages with "NO_JIRA" |
| 37 | + prefix: "NO_JIRA" |
| 38 | + |
| 39 | + # Enable version updates for NPM |
| 40 | + - package-ecosystem: "npm" |
| 41 | + registries: "*" |
| 42 | + # Look for `package.json` or `package.lock` files in the `root` directory |
| 43 | + directory: "/" |
| 44 | + # Check the NPM registry for updates every day (weekdays) |
| 45 | + schedule: |
| 46 | + interval: "daily" |
| 47 | + time: "15:30" |
| 48 | + timezone: "Europe/London" |
| 49 | + commit-message: |
| 50 | + # Prefix all commit messages with "NO_JIRA" |
| 51 | + prefix: "NO_JIRA" |
| 52 | + |
| 53 | +# Enable version update for GitHub Actions |
4 | 54 | - package-ecosystem: "github-actions" |
5 | 55 | directory: "/" |
| 56 | + # Check GitHub Actions for updates every day (weekdays) |
6 | 57 | schedule: |
7 | 58 | interval: "daily" |
| 59 | + time: "15:30" |
| 60 | + timezone: "Europe/London" |
8 | 61 | commit-message: |
9 | | - prefix: "(NO_JIRA)" |
| 62 | + # Prefix all commit messages with "NO_JIRA" |
| 63 | + prefix: "NO_JIRA" |
0 commit comments