2023-12-03 13:23:55 +01:00
|
|
|
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:
|
2023-12-30 10:42:17 +01:00
|
|
|
node-version: 20
|
2023-12-03 13:23:55 +01:00
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Install packages
|
|
|
|
run: |
|
|
|
|
yarn install
|
|
|
|
npm install -g license-checker
|
|
|
|
- name: Check
|
|
|
|
run: |
|
|
|
|
yarn run thirdparty
|
2024-09-03 13:30:52 +02:00
|
|
|
- uses: peter-evans/create-pull-request@v7
|
2023-12-03 13:23:55 +01:00
|
|
|
with:
|
|
|
|
commit-message: "[Auto update] Thirdparty libraries list"
|
|
|
|
branch: auto-update/thirdparty
|
2023-12-04 15:19:36 +01:00
|
|
|
base: main
|
2023-12-03 13:23:55 +01:00
|
|
|
delete-branch: true
|
|
|
|
title: "[Auto update] Thirdparty libraries list"
|