Skip to content

Commit d191bb5

Browse files
chore: Update lint workflow to allow validation of the entire codebase
1 parent d6725e2 commit d191bb5

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/lint.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,14 @@ on:
99
branches:
1010
- main
1111

12+
workflow_dispatch:
13+
inputs:
14+
validate_all_codebase:
15+
description: 'Validate all code base'
16+
required: false
17+
default: false
18+
type: boolean
19+
1220
permissions:
1321
contents: read
1422

@@ -29,7 +37,7 @@ jobs:
2937
- name: Lint Code Base
3038
uses: super-linter/super-linter/slim@v6
3139
env:
32-
VALIDATE_ALL_CODEBASE: false
40+
VALIDATE_ALL_CODEBASE: ${{ github.event.inputs.validate_all_codebase || false }}
3341
DEFAULT_BRANCH: main
3442
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3543
VALIDATE_TYPESCRIPT_STANDARD: false

0 commit comments

Comments
 (0)