LEGO: Pull request from lego/hb_5df43909-4a19-4f55-bc3f-9ea8fccf3c82_20250907053838098 to main #15806
Workflow file for this run
This file contains hidden or 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: Autoformat code | |
| on: pull_request | |
| # This action only need a single permission in order to autoformat the code. | |
| permissions: | |
| contents: read | |
| jobs: | |
| autoformat-code: | |
| name: Autoformat code | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 'Autoformat' | |
| uses: rolfbjarne/autoformat@v0.5 | |
| with: | |
| script: ./tools/autoformat.sh | |
| git_user_email: 'github-actions-autoformatter@xamarin.com' | |
| git_user_name: 'GitHub Actions Autoformatter' |