You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
2.5 KiB
YAML
76 lines
2.5 KiB
YAML
name: "Code Formatting"
|
|
description: ""
|
|
inputs:
|
|
workspace:
|
|
description: ''
|
|
default: ''
|
|
github-token:
|
|
description: ''
|
|
default: ''
|
|
assignees:
|
|
description: ''
|
|
default: 'aragas, artifixer'
|
|
reviewers:
|
|
description: ''
|
|
default: 'aragas, artifixer'
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Setup
|
|
uses: butr/actions-common-setup@v2
|
|
with:
|
|
github-token: ${{ inputs.github-token }}
|
|
|
|
- name: Install dotnet-format
|
|
run: dotnet tool install -g dotnet-format
|
|
shell: pwsh
|
|
|
|
- name: Run dotnet format
|
|
id: format
|
|
uses: jfversluis/dotnet-format@v1.0.9
|
|
with:
|
|
repo-token: ${{ inputs.github-token }}
|
|
action: "fix"
|
|
#only-changed-files: true # only works for PRs
|
|
workspace: ${{ inputs.workspace }}
|
|
|
|
- name: Commit files
|
|
run: >-
|
|
if ('${{ steps.format.outputs.has-changes == 'true' }}' -eq '') { Return };
|
|
git config --local user.name "github-actions[bot]";
|
|
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com";
|
|
git diff-index --quiet HEAD || git commit -a -m 'Automated dotnet-format update';
|
|
shell: pwsh
|
|
|
|
- name: Create Pull Request
|
|
uses: peter-evans/create-pull-request@v3
|
|
with:
|
|
title: '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>
|
|
labels: code-formatting
|
|
assignees: ${{ inputs.assignees }}
|
|
reviewers: ${{ inputs.reviewers }}
|
|
branch: code-formatting/fix-codeformatting
|
|
delete-branch: true
|
|
|
|
# Pushing won't work to forked repos
|
|
# - 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;
|
|
# 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>'
|
|
# shell: pwsh
|
|
|
|
# - name: Push changes
|
|
# if: steps.format.outputs.has-changes == 'true'
|
|
# uses: ad-m/github-push-action@v0.6.0
|
|
# with:
|
|
# github_token: ${{ inputs.github-token }}
|
|
# branch: ${{ github.event.pull_request.head.ref }}
|