Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: add workflow to format whitespaces #236

Merged
merged 19 commits into from
Oct 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 53 additions & 0 deletions .github/workflows/formatter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: Format

on:
pull_request_target:
paths:
- '**.editorconfig'
- '**.globalconfig'
- '**.cs'
- .github/workflows/formatter.yml

permissions:
contents: write

jobs:
format:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
show-progress: false
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.head_ref }}

- name: Cache .NET tools
uses: actions/cache@v3
with:
path: ~/.nuget/packages
key: dotnet-tools-${{ runner.os }}-${{ hashFiles('.config/dotnet-tools.json') }}
restore-keys: dotnet-tools-${{ runner.os }}-

- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x

- name: Restore tools
run: dotnet tool restore

- name: Format scripts
run: dotnet tool run dotnet-format --fix-whitespace --no-restore

- name: Set Git config
run: |
git config user.name octocat
git config user.email octocat@users.noreply.github.com

- name: Commit changes
run: |
git add .
git commit -m "style: fix whitespaces" || true
git push || true