🌱 Sync workflows from kubestellar/infra#1102
Conversation
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
|
Thanks for your pull request. Before we can look at it, you'll need to add a 'DCO signoff' to your commits. 📝 Please follow instructions in the contributing guide to update your commits with the DCO Full details of the Developer Certificate of Origin can be found at developercertificate.org. The list of commits missing DCO signoff:
DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here. |
✅ Deploy Preview for kubestellar-docs ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
|
Welcome to KubeStellar! 🚀 Thank you for submitting this Pull Request. Before your PR can be merged, please ensure: ✅ DCO Sign-off - All commits must be signed off with ✅ PR Title - Must start with an emoji: ✨ (feature), 🐛 (bug fix), 📖 (docs), 🌱 (infra/tests), Getting Started with KubeStellar: Contributor Resources:
🌟 Help KubeStellar Grow - We Need Adopters! Our roadmap is driven entirely by adopter feedback. Whether you're using KubeStellar yourself or know someone who could benefit from multi-cluster Kubernetes: 📋 Take our Multi-Cluster Survey - Share your use cases and help shape our direction! A maintainer will review your PR soon. Feel free to ask questions in the comments or on Slack! |
There was a problem hiding this comment.
Pull request overview
This PR syncs two new Copilot-related workflow files from the kubestellar/infra repository to enable GitHub Copilot automation features. These workflows are caller workflows that delegate to centrally maintained reusable workflows in kubestellar/infra, following the established pattern of workflow reuse in this repository.
Changes:
- Added
copilot-automation.ymlto automate Copilot PR processing with DCO handling and labeling - Added
ai-fix.ymlto enable Copilot to automatically work on issues labeled withai-fix-requested
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
.github/workflows/copilot-automation.yml |
Caller workflow for automating Copilot PR processing; triggers on PR events and workflow_dispatch |
.github/workflows/ai-fix.yml |
Caller workflow for assigning issues to Copilot for automated fixes; triggers on issue labeling and PR creation |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| secrets: | ||
| token: ${{ secrets.GITHUB_TOKEN }} |
There was a problem hiding this comment.
The secret passing pattern used here is inconsistent with other workflows in this repository. All other reusable workflow calls from kubestellar/infra use secrets: inherit instead of explicitly passing token: ${{ secrets.GITHUB_TOKEN }}. This should be changed to maintain consistency with the established pattern in the codebase. Update the secrets section to use secrets: inherit instead of the explicit token parameter.
| secrets: | ||
| token: ${{ secrets.GITHUB_TOKEN }} |
There was a problem hiding this comment.
The secret passing pattern used here is inconsistent with other workflows in this repository. All other reusable workflow calls from kubestellar/infra use secrets: inherit instead of explicitly passing token: ${{ secrets.GITHUB_TOKEN }}. This should be changed to maintain consistency with the established pattern in the codebase. Update the secrets section to use secrets: inherit instead of the explicit token parameter.
|
🎉 Thank you for your contribution! Your PR has been successfully merged. 🌟 Help KubeStellar Grow - We Need Adopters! Our roadmap is driven entirely by adopter feedback - nothing else. Whether you're using KubeStellar yourself or know organizations that could benefit from multi-cluster Kubernetes, we need your help: 📋 Take our Multi-Cluster Survey - Share your use cases and help shape our direction! 🗣️ Spread the word - Tell colleagues, write blog posts, present at meetups 💬 Share feedback on Slack #kubestellar-dev Every adopter story helps us prioritize what matters most. Thank you for being part of the KubeStellar community! |
This PR syncs the caller workflows from
kubestellar/infra.These workflows call reusable workflows from
kubestellar/infra:Standard Workflows:
add-help-wanted.yml- Add help-wanted label to issuesassignment-helper.yml- Handle issue assignmentsfeedback.yml- Collect feedbackgreetings.yml- Welcome new contributorslabel-helper.yml- Manage labelspr-verifier.yml- Verify PR contentspr-verify-title.yml- Verify PR title formatscorecard.yml- Security scorecardstale.yml- Mark stale issues/PRsAgentic Workflows (Copilot Integration):
ai-fix.yml- Assign Copilot to issues withai-fix-requestedlabelcopilot-automation.yml- Automate Copilot PR processing (DCO, labels)copilot-dco.yml- Override DCO for Copilot PRsAuto-generated by workflow sync