Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 14 additions & 6 deletions .github/workflows/super-linter.yml
Original file line number Diff line number Diff line change
@@ -1,24 +1,32 @@
name: Lint
---
name: Super-Linter

on: [pull_request]
on:
push:
branches:
- main
pull_request:
branches:
- '*'

permissions: # added using https://github.com/step-security/secure-workflows
permissions:
contents: read

jobs:
build:
super-linter:
permissions:
contents: read # for actions/checkout to fetch code
statuses: write # for super-linter/super-linter/slim to mark status of each linter run
name: Super-Linter
runs-on: ubuntu-latest
steps:
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
uses: actions/checkout@v6
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

Check warning on line 24 in .github/workflows/super-linter.yml

View workflow job for this annotation

GitHub Actions / Run pre-commit

24:73 [comments] too few spaces before comment
with:
# Full git history is needed to get a proper list of changed files within `super-linter`
fetch-depth: 0
- uses: super-linter/super-linter/slim@v8.6.0
persist-credentials: false
- uses: super-linter/super-linter/slim@9e863354e3ff62e0727d37183162c4a88873df41 # v8.6.0

Check warning on line 29 in .github/workflows/super-linter.yml

View workflow job for this annotation

GitHub Actions / Run pre-commit

29:87 [comments] too few spaces before comment
env:
DEFAULT_BRANCH: main
# VALIDATE_EDITORCONFIG: true
Expand Down
Loading