Default retry-on-snapshot-warnings to false

Keeping this true by default means wasting actions minutes for
the vast majority of DR users
This commit is contained in:
Justin Holguín
2023-09-06 18:04:16 +00:00
committed by GitHub
parent ada103783f
commit e81e6e582f
5 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ const defaultConfig: ConfigurationOptions = {
deny_packages: [],
deny_groups: [],
comment_summary_in_pr: true,
retry_on_snapshot_warnings: true,
retry_on_snapshot_warnings: false,
retry_on_snapshot_warnings_timeout: 120
}
Generated Vendored
+2 -2
View File
@@ -848,7 +848,7 @@ exports.ConfigurationOptionsSchema = z
config_file: z.string().optional(),
base_ref: z.string().optional(),
head_ref: z.string().optional(),
retry_on_snapshot_warnings: z.boolean().default(true),
retry_on_snapshot_warnings: z.boolean().default(false),
retry_on_snapshot_warnings_timeout: z.number().default(120),
comment_summary_in_pr: z
.union([
@@ -48304,7 +48304,7 @@ exports.ConfigurationOptionsSchema = z
config_file: z.string().optional(),
base_ref: z.string().optional(),
head_ref: z.string().optional(),
retry_on_snapshot_warnings: z.boolean().default(true),
retry_on_snapshot_warnings: z.boolean().default(false),
retry_on_snapshot_warnings_timeout: z.number().default(120),
comment_summary_in_pr: z
.union([
Generated Vendored
+1 -1
View File
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -31,7 +31,7 @@ const defaultConfig: ConfigurationOptions = {
'pkg:pip/pycrypto@2.6.1'
],
comment_summary_in_pr: true,
retry_on_snapshot_warnings: true,
retry_on_snapshot_warnings: false,
retry_on_snapshot_warnings_timeout: 120
}
+1 -1
View File
@@ -49,7 +49,7 @@ export const ConfigurationOptionsSchema = z
config_file: z.string().optional(),
base_ref: z.string().optional(),
head_ref: z.string().optional(),
retry_on_snapshot_warnings: z.boolean().default(true),
retry_on_snapshot_warnings: z.boolean().default(false),
retry_on_snapshot_warnings_timeout: z.number().default(120),
comment_summary_in_pr: z
.union([