Skip to content

Commit

Permalink
[License-Check-Workflow] Add licensecheck workflow for dash itself
Browse files Browse the repository at this point in the history
  • Loading branch information
HannesWell committed Mar 17, 2024
1 parent 8d958f8 commit 9255e2c
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/licensecheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# This workflow will check for Maven projects if the licenses of all (transitive) dependencies are vetted.

name: License vetting status check

on:
push:
branches:
- 'master'
pull_request:
branches:
- 'master'
issue_comment:
types: [created]

jobs:
call-license-check:
permissions:
pull-requests: write
uses: eclipse/dash-licenses/.github/workflows/mavenLicenseCheck.yml@master
with:
projectId: technology.dash
secrets:
gitlabAPIToken: ${{ secrets.DASH_GITLAB_API_TOKEN }}

0 comments on commit 9255e2c

Please sign in to comment.