From 8cede8cd756059d0b8eeb9a635beecb59147ba9e Mon Sep 17 00:00:00 2001 From: Simon Warta Date: Thu, 18 Jul 2024 11:38:54 +0200 Subject: [PATCH] Try autofix for text formatting --- .github/workflows/autofix.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/autofix.yml diff --git a/.github/workflows/autofix.yml b/.github/workflows/autofix.yml new file mode 100644 index 0000000000..cff1d5a0d7 --- /dev/null +++ b/.github/workflows/autofix.yml @@ -0,0 +1,30 @@ +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 + + - uses: autofix-ci/action@v1.3.1