Skip to content

Merge branch 'main' of https://github.com/lgc-NB2Dev/workspace #4

Merge branch 'main' of https://github.com/lgc-NB2Dev/workspace

Merge branch 'main' of https://github.com/lgc-NB2Dev/workspace #4

Workflow file for this run

name: Lock workspace dependencies
on:
- push
permissions: write-all
jobs:
lock:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
with:
submodules: true
- name: Update submodules
run: git submodule update --remote --init --recursive
- name: Setup PDM
uses: pdm-project/setup-pdm@v3
- name: Lock Deps
run: pdm lock -G:all
- name: Commit changes
run: |
git config user.name github-actions[bot]
git config user.email github-actions[bot]@users.noreply.github.com
git commit -m "lock deps" -a || exit 0
git push