We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fea2430 commit e763c1eCopy full SHA for e763c1e
.github/workflows/dependencies.yml
@@ -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