From 31fa68af5407fe8308619d85c092f3d46f1dbb81 Mon Sep 17 00:00:00 2001 From: jkoberg Date: Tue, 17 Oct 2023 11:48:06 +0200 Subject: [PATCH] root docs pipeline requests through proxy Signed-off-by: jkoberg --- .drone.star | 8 ++++++++ changelog/unreleased/fix-docs-pipeline.md | 6 ++++++ 2 files changed, 14 insertions(+) create mode 100644 changelog/unreleased/fix-docs-pipeline.md diff --git a/.drone.star b/.drone.star index bb479d240d..c31e9db100 100644 --- a/.drone.star +++ b/.drone.star @@ -1818,6 +1818,14 @@ def docs(): { "name": "docs-generate", "image": OC_CI_GOLANG, + "environment": { + "HTTP_PROXY": { + "from_secret": "drone_http_proxy", + }, + "HTTPS_PROXY": { + "from_secret": "drone_http_proxy", + }, + }, "commands": ["make docs-generate"], }, { diff --git a/changelog/unreleased/fix-docs-pipeline.md b/changelog/unreleased/fix-docs-pipeline.md new file mode 100644 index 0000000000..7a6bb9ca85 --- /dev/null +++ b/changelog/unreleased/fix-docs-pipeline.md @@ -0,0 +1,6 @@ +Bugfix: Fix 403 in docs pipeline + +Docs pipeline was not routed through our proxies which could lead to requests being blacklisted + +https://github.com/owncloud/ocis/issues/7509 +https://github.com/owncloud/ocis/pull/7511