Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions .github/workflows/licensed.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This workflow checks the statuses of cached dependencies used in this action
# with the help of the Licensed tool. If any licenses are invalid or missing,
# this workflow will fail. See: https://github.com/licensee/licensed
# This workflow refreshes and checks dependency license records used in this
# action with the help of the Licensed tool. If any licenses are invalid or
# missing, this workflow will fail. See: https://github.com/licensee/licensed

name: Licensed

Expand Down Expand Up @@ -81,6 +81,11 @@ jobs:
version: 4.x
github_token: ${{ secrets.GITHUB_TOKEN }}

- name: Refresh License Cache
id: refresh-license-cache
if: steps.license-inputs.outputs.changed == 'true'
run: licensed cache

- name: Check Licenses
id: check-licenses
if: steps.license-inputs.outputs.changed == 'true'
Expand Down
Loading