Merge pull request #2949 from testssl/shellcheck_ignore_files

Ignore files types for shellcheck
This commit is contained in:
Dirk Wetter
2025-11-15 14:43:59 +01:00
committed by GitHub
3 changed files with 23 additions and 1 deletions

View File

@@ -1,6 +1,24 @@
# Runs shellcheck on code -- in error mode only.
# "paths-ignore" should be in line with unit_test.*yml files
--- ---
name: Shellcheck name: Shellcheck
on: [pull_request]
on:
pull_request:
paths-ignore:
- 'utils/**'
- 'doc/**'
- 'bin/**'
- '**.md'
- '**.1'
- '**.html'
- '**.pem'
- '**.pdf'
- '**.yml'
- 'LICENSE'
- 'Dockerfile'
- 'Dockerfile.alpine'
permissions: permissions:
contents: read contents: read

View File

@@ -1,3 +1,5 @@
# "paths-ignore" should be in line with unit_tests_ubuntu.yml
# and shellcheck.yml
--- ---
name: CI run MacOS name: CI run MacOS

View File

@@ -1,3 +1,5 @@
# "paths-ignore" should be in line with unit_tests_macos.yml
# and shellcheck.yml
--- ---
name: CI run Ubuntu name: CI run Ubuntu