Merge pull request #4683 from h3poteto/thirdparty/workflow
Add thirdparty json
This commit is contained in:
commit
b5ac4f0133
34
.github/workflows/thirdparty.yml
vendored
Normal file
34
.github/workflows/thirdparty.yml
vendored
Normal 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"
|
@ -10,7 +10,8 @@
|
|||||||
"build": "nextron build",
|
"build": "nextron build",
|
||||||
"postinstall": "electron-builder install-app-deps",
|
"postinstall": "electron-builder install-app-deps",
|
||||||
"typecheck": "tsc -p renderer --noEmit && tsc -p main --noEmit",
|
"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": {
|
"dependencies": {
|
||||||
"blurhash": "^2.0.5",
|
"blurhash": "^2.0.5",
|
||||||
|
1483
thirdparty.json
Normal file
1483
thirdparty.json
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user