Skip to content

Commit e763c1e

Browse files
committed
add dependencies.yml workflow
1 parent fea2430 commit e763c1e

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/dependencies.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Runs `cargo update` periodically.
2+
3+
name: dependencies
4+
5+
on:
6+
schedule:
7+
# Run weekly
8+
- cron: "0 0 * * SUN"
9+
workflow_dispatch:
10+
# Needed so we can run it manually
11+
12+
permissions:
13+
contents: write
14+
pull-requests: write
15+
16+
jobs:
17+
update:
18+
uses: ithacaxyz/ci/.github/workflows/cargo-update-pr.yml@main
19+
secrets:
20+
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)