Skip to content

Commit

Permalink
Reduce verbosity level in default options
Browse files Browse the repository at this point in the history
Default verbosity level has been reduced from '-vv' to '-v' in GithubActionsTest, action.yml and README.md files. This change will lessen the amount of detail displayed in the log output, making it easier to read and understand.
  • Loading branch information
SmetDenis committed Apr 8, 2024
1 parent 9fa6472 commit 5b6f3c7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,9 +165,9 @@ You can find launch examples in the [workflow demo](https://github.com/JBZoo/Csv
# Add flag `--profile` if you want to see profiling info. Add details with `-vvv`.
# Add flag `--debug` if you want to see more really deep details.
# Add flag `--dump-schema` if you want to see the final schema after all includes and inheritance.
# Default value: 'options: --ansi -vv'
# Default value: 'options: --ansi -v'
# You can skip it.
extra: 'options: --ansi -vv'
extra: 'options: --ansi -v'
```
<!-- auto-update:/github-actions-yml -->

Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ inputs:
Add flag `--profile` if you want to see profiling info. Add details with `-vvv`.
Add flag `--debug` if you want to see more really deep details.
Add flag `--dump-schema` if you want to see the final schema after all includes and inheritance.
default: 'options: --ansi -vv'
default: 'options: --ansi -v'

runs:
using: 'docker'
Expand Down
2 changes: 1 addition & 1 deletion tests/GithubActionsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public function testGitHubActionsReadMe(): void
'apply-all' => "'auto'",
'quick' => "'no'",
'skip-schema' => "'no'",
'extra' => "'options: --ansi -vv'",
'extra' => "'options: --ansi -v'",
];

$expectedMessage = [
Expand Down

0 comments on commit 5b6f3c7

Please sign in to comment.