exclude `*.service` files from lint check (#5440)
These `*.service` files are installed on user installations, so referring to a license file outside their installation doesn't make too much sense.
This commit is contained in:
parent
63440766ef
commit
a261384efc
|
@ -215,7 +215,7 @@ jobs:
|
||||||
if: ${{ !cancelled() }} && github.event_name == 'pull_request'
|
if: ${{ !cancelled() }} && github.event_name == 'pull_request'
|
||||||
run: |
|
run: |
|
||||||
excluded_files="config.yaml"
|
excluded_files="config.yaml"
|
||||||
excluded_extensions="ans|json|md|png|ssz|txt"
|
excluded_extensions="ans|json|md|png|service|ssz|txt"
|
||||||
|
|
||||||
current_year=$(date +"%Y")
|
current_year=$(date +"%Y")
|
||||||
outdated_files=()
|
outdated_files=()
|
||||||
|
|
Loading…
Reference in New Issue