Skip to content

升级到 v1.7.1

升级到 v1.7.1 #41

Workflow file for this run

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