Skip to content

Commit

Permalink
Merge branch 'main' into NMSHDB-145-Backbone-Support-Show-sent-and-re…
Browse files Browse the repository at this point in the history
…ceived-messages-of-an-identity
  • Loading branch information
mergify[bot] authored Jul 5, 2024
2 parents d494970 + 6b502b4 commit be4a391
Show file tree
Hide file tree
Showing 3 changed files with 84 additions and 0 deletions.
56 changes: 56 additions & 0 deletions .ci/allowedLicenses.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
[
"AFL-2.1",
"AFLv2.1",
"AFL-3.0",
"AFLv3.0",
"APSL-2.0",
"Apache-1.1",
"Apache-2.0",
"Apache 2.0",
"Artistic-1.0",
"Artistic-2.0",
"BlueOak-1.0.0",
"BSD",
"BSD-2-Clause",
"BSD-3-Clause",
"BSL-1.0",
"CC-BY-1.0",
"CC-BY-2.0",
"CC-BY-2.5",
"CC-BY-3.0",
"CC-BY-4.0",
"CC0-1.0",
"CDDL-1.0",
"CDDL-1.1",
"CPL-1.0",
"EPL-1.0",
"FTL",
"IPL-1.0",
"ISC",
"LGPL-2.0",
"LGPL-2.1",
"LGPL-3.0",
"LPL-1.02",
"MIT",
"MIT*",
"MPL-1.0",
"MPL-1.1",
"MPL-2.0",
"MS-PL",
"NCSA",
"OpenSSL",
"PHP-3.0",
"Ruby",
"Unlicense",
"W3C",
"Xnet",
"ZPL-2.0",
"Zend-2.0",
"Zlib",
"libtiff",
"Public Domain",
"0BSD",
"WTFPL",
"Python-2.0",
"PostgreSQL"
]
7 changes: 7 additions & 0 deletions .ci/ignoredPackages.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[
"Microsoft.AspNet.WebApi.Client",
"Microsoft.AspNetCore.Http.Abstractions",
"MockQueryable.FakeItEasy",
"Serilog.Enrichers.Demystifier",
"SpecFlow.NUnit"
]
21 changes: 21 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -426,3 +426,24 @@ jobs:
run: ./.ci/helm/buildChart.js
env:
VERSION: 0.0.0

validate-licenses:
name: Validate Open Source Licenses
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.x
- name: Install nuget-licenses tool
run: dotnet tool install --global nuget-license
- name: Show Allowed Licenses
run: cat ./.ci/allowedLicenses.json
- name: Show Ignored Packages
run: cat ./.ci/ignoredPackages.json
- name: Restore Solution
run: dotnet restore ./Backbone.sln
- name: Validate Licenses
run: nuget-license --input ./Backbone.sln --allowed-license-types ./.ci/allowedLicenses.json --ignored-packages ./.ci/ignoredPackages.json --output table --error-only

0 comments on commit be4a391

Please sign in to comment.