ci: rename PS_GALLERY_KEY secret reference to PSGALLERY_API_KEY#25
Conversation
The env var fed to build.ps1 is already named PSGALLERY_API_KEY; this brings the GitHub Actions secret name into the same convention so future modules created from this template don't inherit the older PS_GALLERY_KEY name. Template doesn't publish, so no actual secret needs to exist. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
|
Warning Rate limit exceeded
You’ve run out of usage credits. Purchase more in the billing tab. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the 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 configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (1)
✨ Finishing Touches🧪 Generate unit tests (beta)
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. Comment |
There was a problem hiding this comment.
Pull request overview
Updates the PowerShell Gallery publishing workflow in this template to use the renamed GitHub Actions secret PSGALLERY_API_KEY (instead of PS_GALLERY_KEY) while keeping the environment variable passed to build.ps1 unchanged.
Changes:
- Switch
PublishModuleToPowerShellGallery.yamlto read the API key fromsecrets.PSGALLERY_API_KEY.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| shell: pwsh | ||
| env: | ||
| PSGALLERY_API_KEY: ${{ secrets.PS_GALLERY_KEY }} | ||
| PSGALLERY_API_KEY: ${{ secrets.PSGALLERY_API_KEY }} |
Summary
PublishModuleToPowerShellGallery.yamlto read fromsecrets.PSGALLERY_API_KEYinstead ofsecrets.PS_GALLERY_KEY.build.ps1(PSGALLERY_API_KEY) is unchanged.Test plan
🤖 Generated with Claude Code