-
Notifications
You must be signed in to change notification settings - Fork 6
Add auto dependency update skill #143
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This pull request adds automated dependency update functionality for the Azure App Configuration Kubernetes Provider project. It introduces GitHub Actions workflows to manage Go dependency updates, integrates with Azure DevOps for build triggering, and provides Dependabot configuration for automated dependency monitoring.
Changes:
- Added workflow for manual dependency updates with configurable update types (patch, minor, all)
- Added workflow to trigger Azure DevOps builds when dependencies are updated
- Added skill documentation for the auto-vulnerability-patch feature
- Configured Dependabot for automated weekly dependency and GitHub Actions updates
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 14 comments.
| File | Description |
|---|---|
.github/workflows/update-dependencies.yml |
Implements manual dependency update workflow with testing, linting, and automated PR creation |
.github/workflows/trigger-ado-build.yml |
Triggers Azure DevOps pipeline builds when dependency changes are pushed to main |
.github/skills/patch-skill/SKILL.md |
Documents the dependency update process and manual review checklist |
.github/dependabot.yml |
Configures automated weekly dependency updates for Go modules and GitHub Actions |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
@RichardChen820 I've opened a new pull request, #145, to work on those changes. Once the pull request is ready, I'll request review from you. |
Add auto dependency update skill