Skip to content

Commit

Permalink
chore: Update lint workflow to allow validation of the entire codebase
Browse files Browse the repository at this point in the history
  • Loading branch information
ulises-jeremias committed Aug 20, 2024
1 parent d6725e2 commit d191bb5
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,14 @@ on:
branches:
- main

workflow_dispatch:
inputs:
validate_all_codebase:
description: 'Validate all code base'
required: false
default: false
type: boolean

permissions:
contents: read

Expand All @@ -29,7 +37,7 @@ jobs:
- name: Lint Code Base
uses: super-linter/super-linter/slim@v6
env:
VALIDATE_ALL_CODEBASE: false
VALIDATE_ALL_CODEBASE: ${{ github.event.inputs.validate_all_codebase || false }}
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VALIDATE_TYPESCRIPT_STANDARD: false
Expand Down

0 comments on commit d191bb5

Please sign in to comment.