mirror of
https://github.com/Radarr/Radarr
synced 2026-04-24 23:30:45 +02:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
38 lines
935 B
YAML
38 lines
935 B
YAML
# Super Linter for code quality checks on changed files
|
|
# https://github.com/super-linter/super-linter
|
|
|
|
name: Lint Code Base
|
|
|
|
on:
|
|
push:
|
|
branches: [develop, main]
|
|
pull_request:
|
|
branches: [develop]
|
|
|
|
permissions:
|
|
contents: read
|
|
statuses: write
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Lint Code Base
|
|
uses: super-linter/super-linter/slim@v6
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
DEFAULT_BRANCH: develop
|
|
VALIDATE_ALL_CODEBASE: false
|
|
# Disable linters not needed or handled elsewhere
|
|
VALIDATE_CSHARP: false
|
|
VALIDATE_JSCPD: false
|
|
VALIDATE_NATURAL_LANGUAGE: false
|
|
VALIDATE_MARKDOWN: false
|
|
VALIDATE_GITLEAKS: false
|
|
VALIDATE_CHECKOV: false
|
|
VALIDATE_GITHUB_ACTIONS: false
|