Skip to content

Commit 7a24343

Browse files
Updated .github/dependabot.yml NO_JIRA
1 parent 0c74a94 commit 7a24343

File tree

1 file changed

+56
-2
lines changed

1 file changed

+56
-2
lines changed

.github/dependabot.yml

Lines changed: 56 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,63 @@
1-
---
1+
# Dependabot version updates
2+
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuring-dependabot-version-updates
3+
24
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+
324
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
454
- package-ecosystem: "github-actions"
555
directory: "/"
56+
# Check GitHub Actions for updates every day (weekdays)
657
schedule:
758
interval: "daily"
59+
time: "15:30"
60+
timezone: "Europe/London"
861
commit-message:
9-
prefix: "(NO_JIRA)"
62+
# Prefix all commit messages with "NO_JIRA"
63+
prefix: "NO_JIRA"

0 commit comments

Comments
 (0)