mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-21 21:50:59 -05:00
Fetch full git history to get a proper list of changed files within super-linter
This commit is contained in:
parent
2e126e59e2
commit
56b32c3704
2 changed files with 6 additions and 0 deletions
3
.github/workflows/stack-linter.yml
vendored
3
.github/workflows/stack-linter.yml
vendored
|
@ -37,6 +37,9 @@ jobs:
|
|||
##########################
|
||||
- name: Checkout Code
|
||||
uses: actions/checkout@v2.3.3
|
||||
with:
|
||||
# Full git history is needed to get a proper list of changed files within `super-linter`
|
||||
fetch-depth: 0
|
||||
|
||||
################################
|
||||
# Run Linter against code base #
|
||||
|
|
|
@ -151,6 +151,9 @@ jobs:
|
|||
##########################
|
||||
- name: Checkout Code
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
# Full git history is needed to get a proper list of changed files within `super-linter`
|
||||
fetch-depth: 0
|
||||
|
||||
################################
|
||||
# Run Linter against code base #
|
||||
|
|
Loading…
Reference in a new issue