-
Notifications
You must be signed in to change notification settings - Fork 172
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
fix: relax clone step config validation to allow ssh urls #2711
fix: relax clone step config validation to allow ssh urls #2711
Conversation
Signed-off-by: Kent Rancourt <kent.rancourt@gmail.com>
✅ Deploy Preview for docs-kargo-io ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
✅ Deploy Preview for docs-kargo-akuity-io ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
I need to fix a test. |
Signed-off-by: Kent Rancourt <kent.rancourt@gmail.com>
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #2711 +/- ##
==========================================
- Coverage 49.11% 49.09% -0.03%
==========================================
Files 270 270
Lines 19328 19342 +14
==========================================
+ Hits 9492 9495 +3
- Misses 9217 9226 +9
- Partials 619 621 +2 ☔ View full report in Codecov by Sentry. |
Signed-off-by: Kent Rancourt <kent.rancourt@gmail.com>
This was too restrictive to permit ssh URLs.
Note that the schemas for
git-open-pr
andgit-wait-for-pr
do not require the same change because you cannot interact with a Git provider's API over ssh, so the http/s URL is always used for those steps.Part of #2492