forked from gruntwork-io/terragrunt
-
Notifications
You must be signed in to change notification settings - Fork 2
/
renovate.json5
34 lines (29 loc) · 1.2 KB
/
renovate.json5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
$schema: "https://docs.renovatebot.com/renovate-schema.json",
extends: [
"github>coveooss/renovate-presets",
"schedule:earlyMondays",
"group:allNonMajor",
],
ignoreDeps: [
// We have a fork of `hashicorp/hcl/v2` which we rely on for some low level HCL parsing behaviour. We can't update
// our fork the upstream version of the package. See: https://github.com/hashicorp/hcl/issues/348
"github.com/hashicorp/hcl/v2",
"github.com/coveord/hcl/v2",
// Parts of our implementation relies on importing the `.../configs` and `.../lang` packages from
// github.com/hashicorp/terraform. In v0.15.4, terraform moved these packages and others under `.../internal/...`.
// This clearly marks them as internal and indicates that they should not be imported externally.
// See: https://github.com/hashicorp/terraform/commit/cf6e328d92193e63f0b560455a7cd9f437c72725
"github.com/hashicorp/terraform",
],
dependencyDashboard: true,
labels: ["dependency update", "bot"],
prHeader: "Jira: DT-4929",
suppressNotifications: ["prIgnoreNotification"],
timezone: "America/Toronto",
// go specifics
postUpdateOptions: [
"gomodTidy",
"gomodUpdateImportPaths",
],
}