Last active
January 27, 2021 06:39
-
-
Save shiena/197f949bc513858a85883d5529730310 to your computer and use it in GitHub Desktop.
dotnet-format with github action
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: Format C# | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
dotnet-format: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get branch info | |
id: comment-branch | |
uses: xt0rted/[email protected] | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Checkout repo | |
uses: actions/[email protected] | |
with: | |
ref: ${{ steps.comment-branch.outputs.ref }} | |
persist-credentials: false | |
- name: Check latest commit message | |
id: log | |
run: echo "::set-output name=message::$(git log --no-merges -1 --oneline)" | |
- name: Check Assets/Scripts folder existence | |
id: check_folder | |
uses: andstor/[email protected] | |
with: | |
files: "./Assets/Scripts/" | |
- name: Install dotnet-format | |
if: "!contains(steps.log.outputs.message, 'skip ci') && steps.check_folder.outputs.files_exists == 'true'" | |
run: dotnet tool install -g dotnet-format | |
- name: Check format | |
if: "!contains(steps.log.outputs.message, 'skip ci') && steps.check_folder.outputs.files_exists == 'true'" | |
id: check | |
uses: brmenchl/[email protected] | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
action: "check" | |
folder: ./Assets/Scripts | |
fail-fast: false | |
- name: Run format | |
if: steps.check.outputs.has-changes == 'true' | |
uses: brmenchl/[email protected] | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
action: "fix" | |
folder: ./Assets/Scripts | |
- name: Commit files | |
if: steps.check.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 [skip ci]' -m 'Co-authored-by: ${{ github.event.pull_request.user.login }} <${{ github.event.pull_request.user.id }}+${{ github.event.pull_request.user.login }}@users.noreply.github.com>' | |
- name: Push changes | |
if: steps.check.outputs.has-changes == 'true' | |
uses: ad-m/[email protected] | |
with: | |
branch: ${{ steps.comment-branch.outputs.ref }} | |
github_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment