We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6f8638 commit 39d2292Copy full SHA for 39d2292
.github/workflows/update-toolchains.yml
@@ -0,0 +1,18 @@
1
+name: Update Toolchains
2
+
3
+on:
4
+ schedule:
5
+ - cron: '0 0 * * 0' # Weekly on Sunday at 00:00 UTC.
6
+ workflow_dispatch: # Allow manual triggering.
7
8
+permissions:
9
+ contents: write
10
+ pull-requests: write
11
12
+jobs:
13
+ update-toolchains:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@v6
17
+ - uses: rust-bitcoin/rust-bitcoin-maintainer-tools/.github/actions/update-nightly@320a06a
18
+ - uses: rust-bitcoin/rust-bitcoin-maintainer-tools/.github/actions/update-stable@320a06a
0 commit comments