ci: fix scorecard trigger for tag push#12
Open
coseto6125 wants to merge 1 commit into
Open
Conversation
Scorecard only supports default branch, not tag push events. Change from tag trigger to main branch push + weekly cron. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Reviewer's guide (collapsed on small PRs)Reviewer's GuideAdjusts the OpenSSF Scorecard GitHub Action workflow to run on main branch pushes and a weekly cron schedule instead of tag pushes, addressing unsupported tag triggers and fixing the failing scorecard job for releases. Flow diagram for Scorecard workflow trigger behavior changeflowchart TB
Start[GitHub event occurs] --> CheckEventType{Event type}
CheckEventType -->|push| PushTarget
CheckEventType -->|schedule| CronTarget
CheckEventType -->|workflow_dispatch| DispatchTarget
CheckEventType -->|tag push| TagTarget
PushTarget{Push target} -->|branch main| RunWorkflowPush[Run Scorecard workflow]
PushTarget -->|other branches| IgnorePush[Do not run workflow]
CronTarget --> RunWorkflowCron[Run Scorecard workflow]
DispatchTarget --> RunWorkflowDispatch[Run Scorecard workflow]
TagTarget[Tag push<br/>no longer configured] --> IgnoreTag[Do not run workflow]
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Hey - I've left some high level feedback:
- The workflow now hardcodes
mainas the branch; consider usinggithub.event.repository.default_branch(or a reusable workflow input) so this still works if the default branch name changes.
Prompt for AI Agents
Please address the comments from this code review:
## Overall Comments
- The workflow now hardcodes `main` as the branch; consider using `github.event.repository.default_branch` (or a reusable workflow input) so this still works if the default branch name changes.Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
push: tags: v*topush: branches: main+ weekly cron schedule🤖 Generated with Claude Code
Summary by Sourcery
CI: