Skip to content

Commit

Permalink
Add dependabot and licensecheck
Browse files Browse the repository at this point in the history
  • Loading branch information
akurtakov committed Oct 6, 2022
1 parent 14449bf commit 5399998
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
version: 2
updates:
- package-ecosystem: maven
directory: "/lemminx-maven"
schedule:
interval: weekly
open-pull-requests-limit: 10
reviewers:
- mbarbero
22 changes: 22 additions & 0 deletions .github/workflows/licensecheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# 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:
uses: eclipse/dash-licenses/.github/workflows/mavenLicenseCheck.yml@master
with:
projectId: technology.lemminx
submodules: recursive
secrets:
gitlabAPIToken: ${{ secrets.ECLIPSE_GITLAB_API_TOKEN }}

0 comments on commit 5399998

Please sign in to comment.