-
-
Notifications
You must be signed in to change notification settings - Fork 18
51 lines (43 loc) · 1.68 KB
/
format-daily.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: Daily code format check
on:
schedule:
- cron: 0 0 * * * # Every day at midnight (UTC)
workflow_dispatch:
jobs:
dotnet-format:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
global-json-file: global.json
- name: Install XamlStyler.Console
run: dotnet tool install --global XamlStyler.Console
- name: Run dotnet format
run: dotnet format --verbosity diagnostic
- name: Run xaml styler
run: xstyler -f src/ReDocking/**/*.axaml --ignore -c xamlstyler.json
- name: Check for modified files
id: git-check
run: echo "::set-output name=modified::$(if git diff-index --quiet HEAD --; then echo "false"; else echo "true"; fi)"
- name: Commit files
if: steps.git-check.outputs.modified == '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.git-check.outputs.modified == 'true'
uses: peter-evans/create-pull-request@v7
with:
title: 'chore: Automated PR to fix formatting errors'
body: |
Automated PR to fix formatting errors
committer: GitHub <[email protected]>
author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
labels: housekeeping
assignees: indigo-san
reviewers: indigo-san
branch: chore/fix-codeformatting