diff options
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/autocorrect-lint.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/autocorrect-lint.yml b/.github/workflows/autocorrect-lint.yml new file mode 100644 index 0000000000..876303825b --- /dev/null +++ b/.github/workflows/autocorrect-lint.yml @@ -0,0 +1,16 @@ +name: AutoCorrect Lint + +on: + pull_request: + branches: + - main + +jobs: + lint: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: AutoCorrect + uses: huacnlee/autocorrect-action@v1.5.5 |