Skip to content

Thirdparty

Thirdparty #361

Workflow file for this run

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: pnpm/action-setup@v2
with:
version: 8
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- name: Install packages
run: |
pnpm install --frozen-lockfile
npm install -g license-checker
cargo install cargo-bundle-licenses
- name: Check
run: |
pnpm 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"