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 2484d23 commit d861c86Copy full SHA for d861c86
.github/workflows/rust-toolchain-update.yml
@@ -4,6 +4,7 @@ on:
4
schedule:
5
# Run weekly on Mondays at 00:00 UTC
6
- cron: '0 0 * * 1'
7
+ pull_request:
8
9
jobs:
10
check-and-update:
@@ -94,7 +95,7 @@ jobs:
94
95
repo: context.repo.repo,
96
title: `build(rust): Update Rust toolchain to ${newVersion}`,
97
head: branchName,
- base: '${{ github.ref_name }}',
98
+ base: '${{ github.head_ref }}',
99
body: `Updates Rust toolchain to ${newVersion} (${fullVersion}).
100
101
**Changes:**
rust-toolchain.toml
@@ -1,4 +1,4 @@
1
[toolchain]
2
# We pin the minor version to prevent new Clippy lints from breaking CI.
3
# But, we still want to pick up new patch versions.
-channel = "1.89"
+channel = "1.88"
0 commit comments