Skip to content

Commit 22915ec

Browse files
author
Petr Sramek
committed
updated names
1 parent c665058 commit 22915ec

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/format-cs-files.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,19 @@ concurrency:
2525

2626
jobs:
2727
formatting:
28-
name: Format whitespace, code style and file header with .NET ${{ vars.DOTNET_SDK_VERSION }}
28+
name: Format whitespace, code style and file header
2929
runs-on: windows-latest
3030
steps:
3131
- uses: actions/checkout@v4
3232
with:
3333
fetch-depth: 0
34-
- name: Install .NET ${{ vars.DOTNET_SDK_VERSION }}
34+
- name: Setup .NET
3535
uses: actions/setup-dotnet@v4
3636
with:
3737
dotnet-version: ${{ vars.DOTNET_SDK_VERSION }}
3838
- name: Install dotnet-format tool
3939
run: dotnet tool install -g dotnet-format
40-
- name: Format with .NET ${{ vars.DOTNET_SDK_VERSION }}
40+
- name: Format with .NET CLI
4141
run: |
4242
git checkout ${{ github.head_ref || github.ref }}
4343
dotnet format whitespace --verbosity diagnostic
@@ -48,7 +48,7 @@ jobs:
4848
# run: |
4949
# git config --global core.autocrlf false
5050
# git config --global core.eol lf
51-
- name: Push to ${{ github.head_ref || github.ref }}
51+
- name: Push changes to ${{ github.head_ref || github.ref }}
5252
run: |
5353
git add .
5454
git config user.name "$(git log -n 1 --pretty=format:%an)"

0 commit comments

Comments
 (0)