-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathdependabot.yml
More file actions
63 lines (58 loc) · 1.89 KB
/
Copy pathdependabot.yml
File metadata and controls
63 lines (58 loc) · 1.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# Dependabot version updates
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuring-dependabot-version-updates
version: 2
registries:
nuget-github:
type: nuget-feed
url: https://nuget.pkg.github.com/ccdc-confidential/index.json
username: ${{ secrets.CCDC_GITHUB_NUGET_FEED_USER }}
password: ${{ secrets.CCDC_GITHUB_NUGET_FEED_PAT }}
npm-github:
type: npm-registry
url: https://npm.pkg.github.com
username: ${{ secrets.CCDC_GITHUB_NUGET_FEED_USER }}
password: ${{ secrets.CCDC_GITHUB_NUGET_FEED_PAT }}
updates:
# Enable version updates for NuGet
- package-ecosystem: "nuget"
registries:
- nuget-github
# Look for `*.csproj` or `*.sln` files in the `root` directory
directory: "/"
# Check the NuGet registry for updates every day (weekdays)
schedule:
interval: "daily"
time: "15:30"
timezone: "Europe/London"
allow:
- dependency-name: "Ccdc.ServiceDefaults"
ignore:
- dependency-name: "Ccdc.Csd.Protos"
commit-message:
# Prefix all commit messages with "NO_JIRA"
prefix: "fix(NO_JIRA)"
# Enable version updates for NPM
- package-ecosystem: "npm"
registries:
- npm-github
# Look for `package.json` or `package.lock` files in the `root` directory
directory: "/"
# Check the NPM registry for updates every day (weekdays)
schedule:
interval: "daily"
time: "15:30"
timezone: "Europe/London"
commit-message:
# Prefix all commit messages with "NO_JIRA"
prefix: "NO_JIRA"
# Enable version update for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
# Check GitHub Actions for updates every day (weekdays)
schedule:
interval: "daily"
time: "15:30"
timezone: "Europe/London"
commit-message:
# Prefix all commit messages with "NO_JIRA"
prefix: "ci(NO_JIRA)"