Skip to content

Commit

Permalink
Fix dependabot config so PRs pass tests
Browse files Browse the repository at this point in the history
Add e2e gomods to dependabot checking
Add seedling icons to commit message

Signed-off-by: Chris Privitere <23177737+cprivitere@users.noreply.github.com>
  • Loading branch information
cprivitere committed Sep 7, 2022
1 parent 599537a commit 70f4b35
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,29 @@ updates:
directory: "/"
schedule:
interval: "daily"
commit-message:
prefix: ":seedling:"

# Maintain dependencies for Go modules.
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "daily"

commit-message:
prefix: ":seedling:"

# Maintain e2e test Go modules
- package-ecosystem: "gomod"
directory: "/test/e2e"
schedule:
interval: "daily"
commit-message:
prefix: ":seedling:"

# Maintain dependencies for Docker images.
- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "daily"
commit-message:
prefix: ":seedling:"

0 comments on commit 70f4b35

Please sign in to comment.