-
Notifications
You must be signed in to change notification settings - Fork 429
[WIP] Fix failing GitHub Actions workflow integration #15418
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -29,7 +29,7 @@ permissions: | |
| engine: copilot | ||
| network: | ||
| allowed: | ||
| - "api.example.com" | ||
| - defaults | ||
| --- | ||
|
Comment on lines
29
to
33
|
||
|
|
||
| # Test Workflow`, | ||
|
|
@@ -47,7 +47,7 @@ timeout-minutes: 10 | |
| engine: copilot | ||
| network: | ||
| allowed: | ||
| - "api.example.com" | ||
| - defaults | ||
| --- | ||
|
|
||
| # Test Workflow`, | ||
|
|
||
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.
Only the "Valid HTTPS protocol" case sets
strict: false. The invalid-protocol cases still run under default strict mode and can fail earlier due to strict-mode custom-domain validation (ecosystem-only), meaning the test may pass without actually exercising the protocol validation logic. Consider settingstrict: falseon the invalid-protocol cases too and/or asserting the error message indicates an invalid protocol.