CI: Fix nightly toolchain update to mention weekly
What changed, and why it matters
This commit only fixes wording in an automated GitHub Actions workflow. It changes the pull request title and branch name from 'daily' to 'weekly' because the job actually runs once a week, not once a day. There is no code change, no security fix, and no vulnerability.
No action needed. This is a non-security documentation/labeling fix in CI metadata.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff modifies .github/workflows/cron-weekly-update-nightly.yml, updating two strings in the create-pull-request action: the PR title and the branch name. Both are changed from ‘daily’ to ‘weekly’ to match the cron schedule. No Rust source code, dependencies, build logic, or secrets handling are affected.
Changed components
.github/workflows/cron-weekly-update-nightly.ymlInspect captured patch +2 / −2
diff --git a/.github/workflows/cron-weekly-update-nightly.yml b/.github/workflows/cron-weekly-update-nightly.yml
index 08038941..a49f9d0a 100644
--- a/.github/workflows/cron-weekly-update-nightly.yml
+++ b/.github/workflows/cron-weekly-update-nightly.yml
@@ -28,8 +28,8 @@ jobs:
token: ${{ secrets.APOELSTRA_CREATE_PR_TOKEN }}
author: Update Nightly Rustc Bot <bot@example.com>
committer: Update Nightly Rustc Bot <bot@example.com>
- title: Automated daily update to rustc (to ${{ env.nightly_version }})
+ title: Automated weekly update to rustc (to ${{ env.nightly_version }})
body: |
Automated update to Cargo.toml workspace metadata by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action
commit-message: Automated update to rustc ${{ env.nightly_version }}
- branch: create-pull-request/daily-nightly-update
+ branch: create-pull-request/weekly-nightly-update
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.