-
Notifications
You must be signed in to change notification settings - Fork 157
31 lines (29 loc) · 988 Bytes
/
test_toml.yaml
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
name: Check formatting
on:
pull_request:
push:
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: uncenter/setup-taplo@v1
- run: taplo fmt
- shell: pwsh
id: check_files_changed
run: |
# Diff HEAD with the previous commit
$diff = git diff
$HasDiff = $diff.Length -gt 0
Write-Host "::set-output name=files_changed::$HasDiff"
- name: Create Pull Request
if: steps.check_files_changed.outputs.files_changed == 'true'
uses: peter-evans/create-pull-request@v6
with:
token: ${{ secrets.GITHUB_TOKEN }}
title: "Format TOML with Taplo"
commit-message: ":art: Format TOML with Taplo"
body: |
This pull request uses the [Taplo](https://taplo.tamasfe.dev) formatter.
base: ${{ github.head_ref }} # Creates pull request onto pull request or commit branch
branch: actions/toml