Makes License Issues a single table per manifest

This commit is contained in:
David Losert
2023-03-02 07:43:23 +00:00
committed by GitHub
parent 9f0792541a
commit b7a25f4e9b
4 changed files with 71 additions and 33 deletions
+13 -1
View File
@@ -57,12 +57,24 @@ const createFullSummary = async (): Promise<void> => {
createTestChange({
name: 'octoinvader',
license: 'Non SPDX License'
}),
createTestChange({
name: 'owner/action-1',
license: 'XYZ-License',
version: 'v1.2.2',
manifest: '.github/workflows/action.yml'
})
],
unlicensed: [
createTestChange({
name: 'my-other-dependency',
license: 'No License'
license: null
}),
createTestChange({
name: 'owner/action-2',
version: 'main',
license: null,
manifest: '.github/workflows/action.yml'
})
]
}