Bump MudBlazor from 6.9.0 to 6.11.1 #245
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Format check on push | |
on: push | |
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/dotnet-format@v1.0.5 | |
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 <noreply@github.com> | |
author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> | |
assignees: JiuLing-zhang | |
reviewers: JiuLing-zhang | |
branch: bot/fix-codeformatting |