Skip to content
This repository was archived by the owner on Jan 16, 2025. It is now read-only.

Commit 873dcda

Browse files
authored
chore: Prefix production updates with fix to trigger releases (#2846)
* chore: Prefix production updates with fix to trigger releases Set different commit prefix for development and production updates - fix(component) for production - chore(component) for dev dependencies * review comments * review comments * review comments * review comments
1 parent 10a7603 commit 873dcda

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/dependabot.yml

+13
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
# Please see the documentation for all configuration options:
44
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
55

6+
# NPM production dependencies are part of the generated Lambda JavaScript.
7+
# Therefore updates on production are prefixed with fix(component) to trigger releases.
8+
# Development updates are prefixed with chore, and not triggering a release.
9+
610
version: 2
711
updates:
812
- package-ecosystem: "github-actions"
@@ -16,13 +20,22 @@ updates:
1620
directory: "/modules/runner-binaries-syncer/lambdas/runner-binaries-syncer"
1721
schedule:
1822
interval: "weekly"
23+
commit-message:
24+
prefix: "fix(syncer)"
25+
prefix-development: "chore(syncer)"
1926

2027
- package-ecosystem: "npm"
2128
directory: "/modules/webhook/lambdas/webhook"
2229
schedule:
2330
interval: "weekly"
31+
commit-message:
32+
prefix: "fix(webhook)"
33+
prefix-development: "chore(webhook)"
2434

2535
- package-ecosystem: "npm"
2636
directory: "/modules/runners/lambdas/runners"
2737
schedule:
2838
interval: "weekly"
39+
commit-message:
40+
prefix: "fix(runners)"
41+
prefix-development: "chore(runners)"

0 commit comments

Comments
 (0)