Skip to content

Commit 7a4071d

Browse files
committed
evaluator.rules: Gracefully handle Contributor License Agreements
CLAs do not need to be flagged, because they do not apply to the use of open source (only to contributing to it). Signed-off-by: Frank Viernau <[email protected]>
1 parent 021bc76 commit 7a4071d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

evaluator-rules/src/main/resources/evaluator.rules.kts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ val freeRestrictedLicenses = getLicensesForCategory("free-restricted")
4545
val permissiveLicenses = getLicensesForCategory("permissive")
4646
val proprietaryFreeLicenses = getLicensesForCategory("proprietary-free")
4747
val publicDomainLicenses = getLicensesForCategory("public-domain")
48+
val contributorLicenseAgreementLicenenses = getLicensesForCategory("contributor-license-agreement")
4849

4950
/**
5051
* The complete set of licenses covered by policy rules.
@@ -53,6 +54,7 @@ val publicDomainLicenses = getLicensesForCategory("public-domain")
5354
* policy rules for new (offinding) categories, if any.
5455
*/
5556
val handledLicenses = listOf(
57+
contributorLicenseAgreementLicenenses,
5658
copyleftLicenses,
5759
copyleftLimitedLicenses,
5860
freeRestrictedLicenses,

0 commit comments

Comments
 (0)