Translated using Weblate (Indonesian) for appstore #187
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: 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 | |
- name: Create Pull Request | |
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 |