Fix links in README for Copilot Output to Email#216
Fix links in README for Copilot Output to Email#216samikroy wants to merge 1 commit intoAzure:mainfrom
Conversation
Updated links in the README to point to the correct Security-Copilot repository. Issue fix Azure#205
There was a problem hiding this comment.
Pull request overview
Updates documentation links for the “Copilot For Security Output To Email” community plugin so they point to the correct repository/path in Azure/Security-Copilot, addressing the broken-link report in issue #205.
Changes:
- Updated the “Deploy to Azure” button to reference the template in
Azure/Security-Copilot. - Updated embedded screenshot links to use the
Azure/Security-Copilotrepository paths.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| 2. **Deploy Logic App**: Deploy the Logic App included in the solution to your Azure environment. Ensure that it is properly configured and connected to Copilot. | ||
|
|
||
| <a href="https://portal.azure.com/#create/Microsoft.Template/uri/https://github.com/Azure/Copilot-For-Security/blob/main/Custom%20Plugins/Community%20Based%20Plugins/Copilot%20For%20Security%20Output%20To%20Email/SendCopilotOutputToEmail%20Logic%20App/azuredeploy.json" target="_blank"> | ||
| <a href="https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2FAzure%2FSecurity-Copilot%2Frefs%2Fheads%2Fmain%2FPlugins%2FCommunity%2520Based%2520Plugins%2FCopilot%2520For%2520Security%2520Output%2520To%2520Email%2FSendCopilotOutputToEmail%2520Logic%2520App%2Fazuredeploy.json" target="_blank"> |
There was a problem hiding this comment.
The Deploy-to-Azure button URL uses a raw.githubusercontent.com path with .../refs/heads/main/.... For GitHub raw URLs the segment after the repo name is the ref, so this makes the ref refs and the remaining path heads/main/..., which will 404 and break the deploy button. Use the standard raw format https://raw.githubusercontent.com/Azure/Security-Copilot/main/<path> (and then URL-encode that for the portal link).
| <a href="https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2FAzure%2FSecurity-Copilot%2Frefs%2Fheads%2Fmain%2FPlugins%2FCommunity%2520Based%2520Plugins%2FCopilot%2520For%2520Security%2520Output%2520To%2520Email%2FSendCopilotOutputToEmail%2520Logic%2520App%2Fazuredeploy.json" target="_blank"> | |
| <a href="https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2FAzure%2FSecurity-Copilot%2Fmain%2FPlugins%2FCommunity%2520Based%2520Plugins%2FCopilot%2520For%2520Security%2520Output%2520To%2520Email%2FSendCopilotOutputToEmail%2520Logic%2520App%2Fazuredeploy.json" target="_blank"> |
Updated links in the README to point to the correct Security-Copilot repository.
Issue fix #205
@mariocuomo & @CyberVertex