Merge pull request #4683 from h3poteto/thirdparty/workflow

Add thirdparty json
This commit is contained in:
AkiraFukushima 2023-12-03 21:27:54 +09:00 committed by GitHub
commit b5ac4f0133
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 1519 additions and 1 deletions

34
.github/workflows/thirdparty.yml vendored Normal file
View File

@ -0,0 +1,34 @@
name: Thirdparty
on:
schedule:
- cron: '54 10 * * *'
permissions:
contents: write
pull-requests: write
jobs:
update:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/setup-node@v4
with:
node-version: 18
- uses: actions/checkout@v4
- name: Install packages
run: |
yarn install
npm install -g license-checker
- name: Check
run: |
yarn run thirdparty
- uses: peter-evans/create-pull-request@v5
with:
commit-message: "[Auto update] Thirdparty libraries list"
branch: auto-update/thirdparty
base: master
delete-branch: true
title: "[Auto update] Thirdparty libraries list"

View File

@ -10,7 +10,8 @@
"build": "nextron build",
"postinstall": "electron-builder install-app-deps",
"typecheck": "tsc -p renderer --noEmit && tsc -p main --noEmit",
"lint": "eslint renderer --ext ts,tsx"
"lint": "eslint renderer --ext ts,tsx",
"thirdparty": "license-checker --production --json > thirdparty.json"
},
"dependencies": {
"blurhash": "^2.0.5",

1483
thirdparty.json Normal file

File diff suppressed because it is too large Load Diff