mirror of
https://github.com/KRTirtho/spotube.git
synced 2026-08-06 04:09:51 +00:00
31 lines
1.2 KiB
YAML
31 lines
1.2 KiB
YAML
# Copyright 2026 Kingkor Roy Tirtho and Spotube Contributors
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
pre-commit:
|
|
parallel: true
|
|
commands:
|
|
# 1. Protect the AGPL Core (Exclude the Apache libraries)
|
|
agpl-headers:
|
|
glob: "*.{kt,kts,xml}"
|
|
exclude: "(js_plugin_example|plugin_interfaces)/"
|
|
run: addlicense -f .github/agpl_header.txt {staged_files}
|
|
stage_fixed: true
|
|
|
|
# 2. Protect the Apache Libraries (Only include those folders)
|
|
apache-headers:
|
|
glob: "(js_plugin_example|plugin_interfaces)/**/*.{kt,kts,xml}"
|
|
run: addlicense -f .github/apache_header.txt {staged_files}
|
|
stage_fixed: true |