mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
25 lines
647 B
YAML
25 lines
647 B
YAML
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
|