mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Add yml configuration to check licenses Fixes #385 Signed-off-by: Alexander Fedorov <alexander.fedorov@arsysop.ru>
This commit is contained in:
parent
9710f17847
commit
7cd76eeeca
1 changed files with 21 additions and 0 deletions
21
.github/workflows/licensecheck.yml
vendored
Normal file
21
.github/workflows/licensecheck.yml
vendored
Normal file
|
@ -0,0 +1,21 @@
|
|||
# This workflow will check for Maven projects if the licenses of all (transitive) dependencies are vetted.
|
||||
|
||||
name: License vetting status check
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- 'main'
|
||||
pull_request:
|
||||
branches:
|
||||
- 'main'
|
||||
issue_comment:
|
||||
types: [created]
|
||||
|
||||
jobs:
|
||||
call-license-check:
|
||||
uses: eclipse/dash-licenses/.github/workflows/mavenLicenseCheck.yml@master
|
||||
with:
|
||||
projectId: tools.cdt
|
||||
secrets:
|
||||
gitlabAPIToken: ${{ secrets.GITLAB_API_TOKEN }}
|
Loading…
Add table
Reference in a new issue