-
Notifications
You must be signed in to change notification settings - Fork 3
45 lines (41 loc) · 1.35 KB
/
autoformat.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
name: Format check on push
on:
push:
branches: [ main ]
paths-ignore:
- 'README.md'
- '.github/**'
- 'docs/**'
jobs:
dotnet-format:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install dotnet-format
run: dotnet tool install -g dotnet-format
- name: Run dotnet format
id: format
uses: jfversluis/[email protected]
with:
repo-token: $
action: "fix"
only-changed-files: true
- name: Commit files
if: steps.format.outputs.has-changes == 'true'
run: |
git config --local user.name "github-actions[bot]"
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
git commit -a -m 'Automated dotnet-format update'
- name: Create Pull Request
if: steps.format.outputs.has-changes == 'true'
uses: peter-evans/create-pull-request@v3
with:
title: '[Bot] Automated PR to fix formatting errors'
body: |
Automated PR to fix formatting errors
committer: GitHub <[email protected]>
author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
assignees: JiuLing-zhang
reviewers: JiuLing-zhang
branch: bot/fix-codeformatting