mirror of
https://github.com/kubevela/kubevela.git
synced 2026-08-23 22:46:53 +00:00
Signed-off-by: Jianbo Sun <jianbo.sjb@alibaba-inc.com> Signed-off-by: Jianbo Sun <jianbo.sjb@alibaba-inc.com>
29 lines
650 B
YAML
29 lines
650 B
YAML
name: license
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- release-*
|
|
workflow_dispatch: {}
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
- release-*
|
|
-
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
license_check:
|
|
runs-on: ubuntu-latest
|
|
name: Check for unapproved licenses
|
|
steps:
|
|
- uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b
|
|
- name: Set up Ruby
|
|
uses: ruby/setup-ruby@v1
|
|
with:
|
|
ruby-version: 2.6
|
|
- name: Install dependencies
|
|
run: gem install license_finder
|
|
- name: Run tests
|
|
run: license_finder --decisions_file .license/dependency_decisions.yml |