Skip to content

Commit

Permalink
fix: Corrected regex pattern for excluding files in linting workflow
Browse files Browse the repository at this point in the history
Updated the regex pattern to exclude files from a specific directory in the linting workflow configuration.
  • Loading branch information
marcinbojko committed Nov 25, 2024
1 parent 78aecda commit 6f13756
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/01_lint_me.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,5 @@ jobs:
DEFAULT_BRANCH: ${{ github.ref_name }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VALIDATE_ALL_CODEBASE: ${{ github.event_name != 'pull_request' }}
FILTER_REGEX_EXCLUDE: '.*extras/.*'
FILTER_REGEX_EXCLUDE: '.*extra/.*'
# VALIDATE_YAML: true

0 comments on commit 6f13756

Please sign in to comment.