-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
A few updates to the ecctl github workflows/actions: - Removed Team:Delivery labels as they are not relevant anymore - Remove on_master_generation.yml workflow: This used to update the NOTICE and push it to master. Instead, the PR verification now checks that NOTICE is up-to-date so this workflow is not needed. - Move to go-licence-detector for NOTICE generation, since go-licenser doesn't generate the NOTICE anymore in newer versions.
- Loading branch information
Showing
10 changed files
with
6,395 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{{- define "depInfo" -}} | ||
{{- range $i, $dep := . }} | ||
Dependency : {{ $dep.Name }} | ||
Version: {{ $dep.Version }} | ||
Licence type (autodetected): {{ $dep.LicenceType }} | ||
|
||
{{ $dep | licenceText }} | ||
|
||
{{ "-" | line }} | ||
{{ end }} | ||
{{- end -}} | ||
|
||
ecctl | ||
Copyright 2019-{{ currentYear }} Elasticsearch B.V. | ||
|
||
This product includes software developed at Elasticsearch B.V. and | ||
third-party software developed by the licenses listed below. | ||
|
||
{{ "=" | line }} | ||
Third party libraries used by the Elastic ecctl project: | ||
{{ "=" | line }} | ||
{{ template "depInfo" .Direct }} | ||
|
||
{{ if .Indirect }} | ||
{{ "=" | line }} | ||
Indirect dependencies | ||
{{ "=" | line }} | ||
{{ template "depInfo" .Indirect -}} | ||
{{- end}} |