-
Notifications
You must be signed in to change notification settings - Fork 89
47 lines (37 loc) · 1.22 KB
/
formatter.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Format
on:
# https://securitylab.github.com/resources/github-actions-preventing-pwn-requests/
pull_request_target:
paths:
- '**.editorconfig'
- '**.globalconfig'
- '**.cs'
- .github/workflows/formatter.yml
permissions:
contents: write
jobs:
format:
runs-on: ubuntu-latest
steps:
- name: Setup .NET
uses: actions/setup-dotnet@v4
- name: Install the dotnet-format
# Installing the tool globally to avoid any interference from potentially malicious code checked out in the next step
run: dotnet tool install dotnet-format -g --version 5.1.250801
- 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: Format scripts
run: dotnet-format --fix-whitespace --no-restore
- name: Set Git config
run: |
git config user.name octocat
git config user.email [email protected]
- name: Commit changes
run: |
git add .
git commit -m "style: fix whitespaces" || true
git push || true