diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 00000000000..735e874c72b --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,30 @@ +name: Run super-linter + +on: + push: + branches-ignore: + - l10n_main + - dependabot/* + pull_request: + branches-ignore: + - l10n_main + +permissions: + contents: read + packages: read + statuses: write + +jobs: + lint: + runs-on: ubuntu-latest + steps: + - name: Checkout Code + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Lint Code Base + uses: super-linter/super-linter@v6.3.1 + env: + # To report GitHub Actions status checks + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}