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:
Etan Kissling 2023-09-18 23:54:06 +02:00 committed by GitHub
parent 63440766ef
commit a261384efc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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=()