Bump the windowsappsdk group with 3 updates #178
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: PR code format check | |
on: pull_request | |
# This action only need a single permission in order to autoformat the code. | |
permissions: | |
contents: read | |
jobs: | |
autoformat-code: | |
name: code format check | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Autoformat' | |
uses: rolfbjarne/[email protected] | |
with: | |
script: 'dotnet format Microsoft.Maui.sln --no-restore --exclude Templates/src BlazorWebView/src/SharedSource/BlazorWebViewDeveloperTools.cs BlazorWebView/src/SharedSource/BlazorWebViewServiceCollectionExtensions.cs Graphics/src/Graphics.Win2D/W2DCanvas.cs Graphics/src/Graphics.Win2D/W2DExtensions.cs' | |
onlyFilesModifiedInPullRequest: true | |
git_commit_message: 'Auto-format source code' |