Skip to content

Commit d2119c3

Browse files
committed
Updating the dependabot so it doesn't go at a weird time.
Trying to get the dependabot updates over to a different branch (`develop`) because they're getting in the way of people uploading things.
1 parent 3568199 commit d2119c3

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

.github/dependabot.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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+
target-branch: "develop"
9+
schedule:
10+
interval: "daily"
11+
12+
13+
# Enable version updates for Docker
14+
- package-ecosystem: "docker"
15+
# Look for a `Dockerfile` in the `root` directory
16+
directory: "/"
17+
target-branch: "develop"
18+
# Check for updates once a week
19+
schedule:
20+
interval: "weekly"
21+
22+
# Enable version updates for GitHub Actions
23+
- package-ecosystem: "github-actions"
24+
# Workflow files stored in the default location of `.github/workflows`
25+
# You don't need to specify `/.github/workflows` for `directory`. You can use `directory: "/"`.
26+
directory: "/"
27+
target-branch: "develop"
28+
schedule:
29+
interval: "weekly"

0 commit comments

Comments
 (0)