License Summary #121
This file contains hidden or 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
name: License Summary | |
on: | |
schedule: | |
- cron: '0 9 * * *' | |
workflow_dispatch: {} | |
jobs: | |
update: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
with: | |
fetch-depth: 1 | |
- name: setup environment | |
uses: ./.github/actions/setup | |
with: | |
codegen: false | |
- name: generate license summary | |
run: | | |
LICENSE_SUMMARY=$(npx license-checker --summary) | |
LICENSE_LIST=$(npx license-checker --list) | |
echo "\`\`\`\n$LICENSE_SUMMARY\n\n$LICENSE_LIST\n\`\`\`" >> $GITHUB_STEP_SUMMARY |