Skip to content

Commit

Permalink
Try autofix for text formatting (#2189)
Browse files Browse the repository at this point in the history
* Try autofix for text formatting

* Mess up some formatting

* [autofix.ci] apply automated fixes

---------

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
  • Loading branch information
webmaster128 and autofix-ci[bot] authored Jul 29, 2024
1 parent cc0d19b commit a106547
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/autofix.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: autofix.ci # needed to securely identify the workflow

on:
pull_request:

permissions:
contents: read

jobs:
autofix-text:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "oldstable"

- name: Install shfmt
run: go install mvdan.cc/sh/v3/cmd/shfmt@latest
- name: Install npx (for prettier)
run: sudo apt install nodejs

- name: Format Markdown
run: ./devtools/format_md.sh
- name: Format YAML
run: ./devtools/format_yml.sh
- name: Format Shell
run: ./devtools/format_sh.sh

# Get latest version from https://autofix.ci/setup
- uses: autofix-ci/action@dd55f44df8f7cdb7a6bf74c78677eb8acd40cd0a

0 comments on commit a106547

Please sign in to comment.