blob: 6924b9b2bd9d985fb08938a382409ac0ff428689 [file] [log] [blame]
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You 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.
name: License
on:
push:
branches:
- master
pull_request:
branches:
- "**"
jobs:
license:
name: license
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: 'recursive'
- name: Check License Header
uses: apache/skywalking-eyes/header/@d299844e334855087f18ae1fe3c81ae8d22bc282
with:
config: .licenserc.yaml
- name: Check Dependencies License
uses: apache/skywalking-eyes/dependency/@d299844e334855087f18ae1fe3c81ae8d22bc282
with:
config: .licenserc.yaml
- name: Check Dependencies Licenses Summary
run: |
go install github.com/apache/skywalking-eyes/cmd/license-eye@d299844e334855087f18ae1fe3c81ae8d22bc282
license-eye dependency resolve --summary ./dist-material/LICENSE.tpl -c .licenserc.yaml || exit 1
if [ ! -z "$(git diff -U0 ./dist-material/LICENSE)" ]; then
echo "LICENSE file is not updated correctly"
git diff -U0 ./dist-material/LICENSE
exit 1
fi