Skip to content
This repository was archived by the owner on Feb 25, 2026. It is now read-only.

Commit c4ba054

Browse files
authored
Update dependabot.yml to not inspect archive directory (#1266)
* Fix exclude-paths formatting in dependabot.yml * Refactor dependabot.yml for pip and npm updates Copilot suggested this for "stable release" configuration. The "exclude-paths" apply for a given directory not the "directories" node. This "should" fix the problem.
1 parent 119de19 commit c4ba054

1 file changed

Lines changed: 29 additions & 14 deletions

File tree

.github/dependabot.yml

Lines changed: 29 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,37 @@
11
version: 2
22
updates:
3+
# Pip dependencies
34
- package-ecosystem: "pip"
4-
directories:
5-
- "/fabric/*"
6-
- "/databricks/*"
7-
- "/azuredatafactory/*"
8-
- "/azuresqldb/*"
5+
directory: "/fabric"
6+
schedule:
7+
interval: "weekly"
8+
- package-ecosystem: "pip"
9+
directory: "/databricks"
10+
schedule:
11+
interval: "weekly"
12+
- package-ecosystem: "pip"
13+
directory: "/azuredatafactory"
14+
schedule:
15+
interval: "weekly"
16+
- package-ecosystem: "pip"
17+
directory: "/azuresqldb"
18+
schedule:
19+
interval: "weekly"
20+
21+
# NPM dependencies
22+
- package-ecosystem: "npm"
23+
directory: "/fabric"
24+
schedule:
25+
interval: "weekly"
26+
- package-ecosystem: "npm"
27+
directory: "/databricks"
28+
schedule:
29+
interval: "weekly"
30+
- package-ecosystem: "npm"
31+
directory: "/azuredatafactory"
932
schedule:
1033
interval: "weekly"
11-
exclude-paths:
12-
- "archive/**"
1334
- package-ecosystem: "npm"
14-
directories:
15-
- "/fabric/*"
16-
- "/databricks/*"
17-
- "/azuredatafactory/*"
18-
- "/azuresqldb/*"
35+
directory: "/azuresqldb"
1936
schedule:
2037
interval: "weekly"
21-
exclude-paths:
22-
- "archive/**"

0 commit comments

Comments
 (0)