From f8b273e84e7d7abd643f5f4791fd1b8ee5e446b1 Mon Sep 17 00:00:00 2001 From: antoniomorello-DB Date: Thu, 11 Sep 2025 09:59:04 -0400 Subject: [PATCH 1/2] Update devdocs-notify.yml --- .github/workflows/devdocs-notify.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/devdocs-notify.yml b/.github/workflows/devdocs-notify.yml index 91ef71e..c95023a 100644 --- a/.github/workflows/devdocs-notify.yml +++ b/.github/workflows/devdocs-notify.yml @@ -19,6 +19,9 @@ jobs: || context.payload.review?.body || ""; + const url = process.env.SLACK_WEBHOOK_URL; + console.log("Slack URL Length", url?.length); + await fetch(process.env.SLACK_WEBHOOK_URL, { method: "POST", headers: { "Content-Type": "application/json" }, From e57e4ec43192626fb48321c37403c44b1a579543 Mon Sep 17 00:00:00 2001 From: antoniomorello-DB Date: Thu, 11 Sep 2025 10:58:03 -0400 Subject: [PATCH 2/2] Attempt to resolve URL parse issue --- .github/workflows/devdocs-notify.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/devdocs-notify.yml b/.github/workflows/devdocs-notify.yml index c95023a..e23f62a 100644 --- a/.github/workflows/devdocs-notify.yml +++ b/.github/workflows/devdocs-notify.yml @@ -2,7 +2,7 @@ name: DevDocs PR or Issue Creation Notifier on: issues: types: [opened] - pull_request: + pull_request_target: types: [opened] jobs: