From 73b774a2445e127569a7810501bae6539749993a Mon Sep 17 00:00:00 2001 From: Mollie Munoz Date: Fri, 17 Nov 2023 15:21:25 -0800 Subject: [PATCH] OpenAI 403 workaround to merge approved PRs (#619) ### Motivation and Context No PRs can be merged due to 403 on https://platform.openai.com ### Description This is NOT a permanent fix as it does NOT address the root cause. It is a temporary change so important PRs can be merged. ### Contribution Checklist - [ ] The code builds clean without any errors or warnings - [ ] The PR follows the [Contribution Guidelines](https://github.com/microsoft/chat-copilot/blob/main/CONTRIBUTING.md) and the [pre-submission formatting script](https://github.com/microsoft/chat-copilot/blob/main/CONTRIBUTING.md#development-scripts) raises no violations - [ ] All unit tests pass, and I have added new tests where possible - [ ] I didn't break anyone :smile: --------- Co-authored-by: Mollie Munoz --- .github/workflows/markdown-link-check-config.json | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/markdown-link-check-config.json b/.github/workflows/markdown-link-check-config.json index fda83fa87..a79ee8f93 100644 --- a/.github/workflows/markdown-link-check-config.json +++ b/.github/workflows/markdown-link-check-config.json @@ -23,17 +23,14 @@ }, { "pattern": "^https://localhost" + }, + { + "pattern": "^https://platform.openai.com" } ], "timeout": "20s", "retryOn429": true, "retryCount": 3, "fallbackRetryDelay": "30s", - "aliveStatusCodes": [ - 200, - 206, - 429, - 500, - 503 - ] + "aliveStatusCodes": [200, 206, 429, 500, 503] }