Bump autofix-ci/action from dd55f44df8f7cdb7a6bf74c78677eb8acd40cd0a to 635ffb0c9798bd160680f18fd73371e355b85f27 #12
This file contains hidden or 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: autofix.ci | |
on: | |
pull_request: | |
push: | |
branches: ["main"] | |
permissions: | |
contents: read | |
jobs: | |
autofix: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
- run: go install github.com/google/yamlfmt/cmd/yamlfmt@latest | |
- run: yamlfmt . | |
- uses: actions/setup-python@v5 | |
- run: pip install ruff | |
- run: ruff format . | |
- run: ruff check --fix . | |
- uses: autofix-ci/action@635ffb0c9798bd160680f18fd73371e355b85f27 |