Skip to content

Commit ccc09ba

Browse files
committed
fix problem around local
1 parent 50088cb commit ccc09ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci-check.libsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ local std_get = (import 'common-utils.libsonnet').std_get;
33
{
44
# check that all non [gate, ondemand] entries have notify_emails or notify_groups defined
55
local missing_notify(builds) = {
6-
[x.name]: $.std_get(x, "defined_in") for x in builds if !std.objectHas(x, "notify_emails") && !std.objectHasAll(x, "notify_groups") && (std.member(x.targets, "daily") || std.member(x.targets, "weekly") || std.member(x.targets, "monthly"))
6+
[x.name]: std_get(x, "defined_in") for x in builds if !std.objectHas(x, "notify_emails") && !std.objectHasAll(x, "notify_groups") && (std.member(x.targets, "daily") || std.member(x.targets, "weekly") || std.member(x.targets, "monthly"))
77
},
88

99
verify_ci(builds)::

0 commit comments

Comments
 (0)