File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 37
37
run : dotnet tool install -g dotnet-format
38
38
- name : Format with .NET ${{ vars.DOTNET_SDK_VERSION }}
39
39
run : |
40
- dotnet format whitespace
41
- dotnet format style
42
- dotnet format analyzers --diagnostics IDE0073
40
+ dotnet format whitespace --verbosity diagnostic
41
+ dotnet format style --verbosity diagnostic
42
+ dotnet format analyzers --diagnostics IDE0073 --verbosity diagnostic
43
43
working-directory : ${{ github.workspace }}
44
44
- name : Validate with .NET ${{ vars.DOTNET_SDK_VERSION }}
45
45
id : git
51
51
set -e
52
52
working-directory : ${{ github.workspace }}
53
53
- name : Push to ${{ github.ref }}
54
- if : ${{ steps.git.outputs.has-changes == '1' }}
54
+ # if: ${{ steps.git.outputs.has-changes == '1' }}
55
55
run : |
56
+ echo ${{ steps.git.outputs.has-changes == '1' }}
56
57
git add .
57
58
git config user.name "$(git log -n 1 --pretty=format:%an)"
58
59
git config user.email "$(git log -n 1 --pretty=format:%ae)"
You can’t perform that action at this time.
0 commit comments