Skip to content

Commit

Permalink
add TOML formating using Taplo
Browse files Browse the repository at this point in the history
  • Loading branch information
OniriCorpe authored and Salamandar committed Mar 18, 2024
1 parent b44b882 commit 289aa47
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/test_toml.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,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
9 changes: 9 additions & 0 deletions taplo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
include = [ "antifeatures.toml", "apps.toml", "categories.toml", "graveyard.toml", "taplo.toml" ]

[formatting]
array_auto_expand = false
compact_arrays = false
indent_tables = true
inline_table_expand = false
reorder_arrays = true
reorder_keys = true

0 comments on commit 289aa47

Please sign in to comment.