Skip to content

Commit 33ed11b

Browse files
committed
Suppress irrelevant output when running workflow validation task
By default, Task displays the commands it is running. With a simple task, this is reasonable for the sake of transparency of what is being done. However, with more complex tasks, it clutters up the output with information that is largely irrelevant to the task user. This is avoided by the addition of the `--silent` flag. Note that this does not suppress the output from the commands the task runs, but only the output from Task itself.
1 parent d08e08e commit 33ed11b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/lint-config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ jobs:
2929
version: 3.x
3030

3131
- name: Lint configuration files
32-
run: task ci:validate
32+
run: task --silent ci:validate
3333

0 commit comments

Comments
 (0)