We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6725e2 commit d191bb5Copy full SHA for d191bb5
.github/workflows/lint.yml
@@ -9,6 +9,14 @@ on:
9
branches:
10
- main
11
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
+
20
permissions:
21
contents: read
22
@@ -29,7 +37,7 @@ jobs:
29
37
- name: Lint Code Base
30
38
uses: super-linter/super-linter/slim@v6
31
39
env:
32
- VALIDATE_ALL_CODEBASE: false
40
+ VALIDATE_ALL_CODEBASE: ${{ github.event.inputs.validate_all_codebase || false }}
33
41
DEFAULT_BRANCH: main
34
42
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
35
43
VALIDATE_TYPESCRIPT_STANDARD: false
0 commit comments