update-slu-lib #10
This file contains 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: Seelen UI Library dependency update | |
on: | |
repository_dispatch: | |
types: [update-slu-lib] | |
workflow_dispatch: | |
jobs: | |
update: | |
runs-on: windows-latest | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: nightly-2024-06-25 | |
- name: Rust update dependency | |
run: | | |
cargo update -p seelen-core | |
- name: JavaScript update dependency | |
run: | | |
npm install -D seelen-core@npm:@seelen-ui/lib@next | |
- name: Commit & Pull Request | |
uses: peter-evans/create-pull-request@v7 | |
with: | |
sign-commits: true | |
commit-message: "build(deps): update slu-lib dependency" | |
branch: "dependency/slu-lib" | |
title: "build(deps): update slu-lib dependency" | |
body: "Update seelen ui library dependency" | |
labels: "dependencies,javascript,rust" |