Skip to content

ci: pin feature-ideation-reusable.yml to SHA (action pinning compliance)#203

Open
don-petry wants to merge 2 commits intomainfrom
claude/issue-159-20260418-1852
Open

ci: pin feature-ideation-reusable.yml to SHA (action pinning compliance)#203
don-petry wants to merge 2 commits intomainfrom
claude/issue-159-20260418-1852

Conversation

@don-petry
Copy link
Copy Markdown
Collaborator

Summary

  • Pins petry-projects/.github/.github/workflows/feature-ideation-reusable.yml from @v1 to @ee22b427cbce9ecadcf2b436acb57c3adf0cb63d # v1
  • Also syncs template updates from standards/workflows/feature-ideation.yml: adds dry_run input, actions: read permission, and sources_file comment guidance

Details

The SHA was looked up via gh api repos/petry-projects/.github/git/refs/tags/v1 — the v1 lightweight tag currently points to ee22b427cbce9ecadcf2b436acb57c3adf0cb63d. The standards template uses an older SHA (ae9709f4...) so I used the current authoritative value from the tag.

Closes #159

Generated with Claude Code

Pin petry-projects/.github/.github/workflows/feature-ideation-reusable.yml
from @v1 to @ee22b427cbce9ecadcf2b436acb57c3adf0cb63d # v1 to satisfy the
action-pinning policy (ci-standards.md#action-pinning-policy).

Also syncs template updates from standards/workflows/feature-ideation.yml:
- Add dry_run workflow_dispatch input
- Add actions: read permission (feed checkpoint support)
- Add sources_file comment guidance

Closes #159

Co-authored-by: don-petry <don-petry@users.noreply.github.com>
Copilot AI review requested due to automatic review settings April 18, 2026 18:54
@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented Apr 18, 2026

Warning

Rate limit exceeded

@github-actions[bot] has exceeded the limit for the number of commits that can be reviewed per hour. Please wait 46 minutes and 13 seconds before requesting another review.

Your organization is not enrolled in usage-based pricing. Contact your admin to enable usage-based pricing to continue reviews beyond the rate limit, or try again in 46 minutes and 13 seconds.

⌛ How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

🚦 How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout.

Please see our FAQ for further information.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: 7e33df78-1479-4a57-8e3b-ff3152c740ce

📥 Commits

Reviewing files that changed from the base of the PR and between 32e618b and 5b1d345.

📒 Files selected for processing (1)
  • .github/workflows/feature-ideation.yml
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch claude/issue-159-20260418-1852

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@don-petry
Copy link
Copy Markdown
Collaborator Author

@don-petry — PR is ready for review and merge. This is the CODEOWNERS review request.

Summary of changes:

  • Pins petry-projects/.github/.github/workflows/feature-ideation-reusable.yml from @v1 to @ee22b427cbce9ecadcf2b436acb57c3adf0cb63d # v1 — satisfies the action-pinning compliance check
  • Syncs template updates: dry_run input, actions: read permission, sources_file comment

Note: PR #183 (the previous attempt) is still open — you may want to close it after merging this one.

Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Note

Copilot was unable to run its full agentic suite in this review.

Pins the reusable “feature ideation” workflow to a commit SHA for GitHub Action pinning compliance, and syncs recent template improvements (new dry_run input, required permissions, and source-list guidance).

Changes:

  • Pin reusable workflow reference from @v1 to a full commit SHA.
  • Add dry_run workflow_dispatch input and pass-through to the reusable workflow.
  • Expand permissions/docs: add actions: read and document repo-local sources_file guidance.

# sources_file: 'docs/feature-ideation-sources.md'
focus_area: ${{ inputs.focus_area || '' }}
research_depth: ${{ inputs.research_depth || 'standard' }}
dry_run: ${{ inputs.dry_run || false }}
Copy link

Copilot AI Apr 18, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

inputs.dry_run is already a boolean with a default (false) in workflow_dispatch. Using || false is redundant and can be slightly confusing about intended typing/coercion. Prefer passing it through directly (e.g., dry_run: ${{ inputs.dry_run }}) to keep the expression simpler and preserve the boolean value without relying on || semantics.

Suggested change
dry_run: ${{ inputs.dry_run || false }}
dry_run: ${{ inputs.dry_run }}

Copilot uses AI. Check for mistakes.
@sonarqubecloud
Copy link
Copy Markdown

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Compliance: unpinned-actions-feature-ideation.yml

2 participants