Skip to content

Commit

Permalink
Try autofix for text formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
webmaster128 committed Jul 18, 2024
1 parent 4308226 commit e95ac39
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/autofix.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
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

- 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/[email protected]

0 comments on commit e95ac39

Please sign in to comment.