Skip to content

Commit

Permalink
actions: add LicenseFinder
Browse files Browse the repository at this point in the history
  • Loading branch information
skottler committed Jan 29, 2022
1 parent 088be8c commit c0da537
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/licensing.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Verify dependency licenses

on:
push:
branches:
- main
pull_request:
types:
- opened
- reopened
- synchronize

jobs:
licensing:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- run: sudo gem install license_finder
- run: go get -v ./...
- run: license_finder
37 changes: 37 additions & 0 deletions doc/dependency_decisions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
---
- - :permit
- bsd-2-clause
- :who:
:why:
:versions: []
:when: 2022-01-29 15:00:47.721236000 Z
- - :permit
- bsd-3-clause
- :who:
:why:
:versions: []
:when: 2022-01-29 15:00:48.022596000 Z
- - :permit
- apache-2.0
- :who:
:why:
:versions: []
:when: 2022-01-29 15:00:48.281393000 Z
- - :permit
- MIT
- :who:
:why:
:versions: []
:when: 2022-01-29 15:00:48.545683000 Z
- - :permit
- ISC
- :who:
:why:
:versions: []
:when: 2022-01-29 15:00:48.811668000 Z
- - :permit
- mpl-2.0
- :who:
:why:
:versions: []
:when: 2022-01-29 15:00:49.071997000 Z

0 comments on commit c0da537

Please sign in to comment.