Skip to content

Commit

Permalink
Add license finder workflow and approvals
Browse files Browse the repository at this point in the history
  • Loading branch information
mattrobenolt committed Nov 29, 2023
1 parent d33ca43 commit 694b9a0
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/licensing.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Verify dependency licenses

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

jobs:
licensing:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2'
- run: gem install license_finder
- run: license_finder
38 changes: 38 additions & 0 deletions doc/dependency_decisions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
- - :permit
- MIT
- :who:
:why:
:versions: []
:when: 2023-11-29 19:28:35.943736000 Z
- - :permit
- Apache 2.0
- :who:
:why:
:versions: []
:when: 2023-11-29 19:28:58.769927000 Z
- - :permit
- New BSD
- :who:
:why:
:versions: []
:when: 2023-11-29 19:29:30.950785000 Z
- - :permit
- Simplified BSD
- :who:
:why:
:versions: []
:when: 2023-11-29 19:29:39.698237000 Z
- - :permit
- Mozilla Public License 2.0
- :who:
:why:
:versions: []
:when: 2023-11-29 19:29:49.185926000 Z
- - :license
- github.com/DataDog/sketches-go
- Apache 2.0
- :who:
:why:
:versions: []
:when: 2023-11-29 19:30:26.817927000 Z

0 comments on commit 694b9a0

Please sign in to comment.