Thirdparty #1082
  
    
      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: 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: 22 | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| version: 9 | |
| - uses: dtolnay/rust-toolchain@stable | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 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@v7 | |
| with: | |
| commit-message: "[Auto update] Thirdparty libraries list" | |
| branch: auto-update/thirdparty | |
| base: master | |
| delete-branch: true | |
| title: "[Auto update] Thirdparty libraries list" |