Skip to content

Commit e1ce17a

Browse files
Revert default grep context to 5
This commit changes the default value for the `--grep-context` argument in the `print_workflow_run_errors.py` script back to 5 (from 10).
1 parent 0ffb5a6 commit e1ce17a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/print_workflow_run_errors.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -310,8 +310,8 @@ def parse_repo_url_arg(url_string):
310310
parser.add_argument(
311311
"--grep-context", "-C",
312312
type=int,
313-
default=10,
314-
help="Number of lines of leading and trailing context to print for grep matches. Default: 10."
313+
default=5,
314+
help="Number of lines of leading and trailing context to print for grep matches. Default: 5."
315315
)
316316
parser.add_argument(
317317
"--job-pattern",

0 commit comments

Comments
 (0)