This repository has been archived by the owner on May 1, 2024. It is now read-only.
Daily code format check #1263
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: Daily code format check | |
on: | |
schedule: | |
- cron: 0 0 * * * # Every day at midnight (UTC) | |
jobs: | |
dotnet-format: | |
runs-on: windows-latest | |
steps: | |
- name: Install dotnet-format | |
run: dotnet tool install -g dotnet-format | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.head_ref }} | |
- name: Run dotnet format | |
id: format | |
uses: jfversluis/dotnet-format@v1.0.5 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
action: "fix" | |
#only-changed-files: true # only works for PRs | |
workspace: "Xamarin.Forms.sln" | |
- 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' | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v3 | |
with: | |
title: '[housekeeping] 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: t/housekeeping ♻︎ | |
assignees: rmarinho, jsuarezruiz | |
reviewers: rmarinho, jsuarezruiz | |
branch: housekeeping/fix-codeformatting | |
# 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>' | |
# - name: Push changes | |
# if: steps.format.outputs.has-changes == 'true' | |
# uses: ad-m/github-push-action@v0.6.0 | |
# with: | |
# github_token: ${{ secrets.GITHUB_TOKEN }} | |
# branch: ${{ github.event.pull_request.head.ref }} |