File tree Expand file tree Collapse file tree 1 file changed +1
-18
lines changed Expand file tree Collapse file tree 1 file changed +1
-18
lines changed Original file line number Diff line number Diff line change 62
62
# All available variables are described in documentation
63
63
# https://megalinter.io/configuration/
64
64
env :
65
- # Validates all source when push on main, else just the git diff with
66
- # main. Override with true if you always want to lint all sources
67
- #
68
- # To validate the entire codebase, set to:
69
- # VALIDATE_ALL_CODEBASE: true
70
- #
71
- # To validate only diff with main, set to:
72
- # VALIDATE_ALL_CODEBASE: >-
73
- # ${{
74
- # github.event_name == 'push' &&
75
- # contains(fromJSON('["refs/heads/main", "refs/heads/master"]'), github.ref)
76
- # }}
77
- VALIDATE_ALL_CODEBASE : >-
78
- ${{
79
- github.event_name == 'push' &&
80
- contains(fromJSON('["refs/heads/main", "refs/heads/master"]'),
81
- github.ref) }}
82
-
65
+ VALIDATE_ALL_CODEBASE : true
83
66
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
84
67
85
68
# ADD YOUR CUSTOM ENV VARIABLES HERE OR DEFINE THEM IN A FILE
You can’t perform that action at this time.
0 commit comments