Skip to content

Commit

Permalink
[CI] Add workflow for auto dependencies update
Browse files Browse the repository at this point in the history
  • Loading branch information
aicorein committed Oct 13, 2024
1 parent 46c3fd4 commit bc1fa4f
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: makedoc
name: make_doc

on:
push:
Expand All @@ -10,7 +10,7 @@ on:
main

jobs:
build:
build_doc:
runs-on: ubuntu-latest

steps:
Expand Down
26 changes: 26 additions & 0 deletions .github/workflows/update_deps.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: update_deps

on:
push:
branches:
main

schedule:
- cron: "0 0 * * *"

jobs:
update_dependencies:
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Update dependencies
uses: pdm-project/update-deps-action@main
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: "[CI] Auto update dependencies"
pr-title: "[CI] Update dependencies"
install-plugins: "false"
sign-off-commit: "false"

0 comments on commit bc1fa4f

Please sign in to comment.