This is an automated email from the ASF dual-hosted git repository.
rmetzger pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/flink-kubernetes-operator.git
The following commit(s) were added to refs/heads/main by this push:
new 0a94e1f4 [hotfix] Fix broken stable docs URL in outdated/unreleased
banner (#1092)
0a94e1f4 is described below
commit 0a94e1f45b85403985b3b12bfeffc24a8d78c795
Author: Purushottam Sinha <[email protected]>
AuthorDate: Thu Apr 23 11:47:04 2026 +0530
[hotfix] Fix broken stable docs URL in outdated/unreleased banner (#1092)
The "stable version" link in the outdated/unreleased version banner
pointed to the legacy ci.apache.org host, which now 404s. The rest of
the repo already uses nightlies.apache.org; update the banner to match.
---
docs/layouts/partials/docs/inject/content-before.html | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/layouts/partials/docs/inject/content-before.html
b/docs/layouts/partials/docs/inject/content-before.html
index 7304b9c3..7908e186 100644
--- a/docs/layouts/partials/docs/inject/content-before.html
+++ b/docs/layouts/partials/docs/inject/content-before.html
@@ -23,14 +23,14 @@ under the License.
{{ if $.Site.Params.ShowOutDatedWarning }}
<article class="markdown">
<blockquote style="border-color:#f66">
- {{ markdownify "This documentation is for an out-of-date version of
Apache Flink Kubernetes Operator. We recommend you use the latest [stable
version](https://ci.apache.org/projects/flink/flink-kubernetes-operator-docs-stable/)."}}
+ {{ markdownify "This documentation is for an out-of-date version of
Apache Flink Kubernetes Operator. We recommend you use the latest [stable
version](https://nightlies.apache.org/flink/flink-kubernetes-operator-docs-stable/)."}}
</blockquote>
</article>
{{ end }}
{{ if (not $.Site.Params.IsStable) }}
<article class="markdown">
<blockquote style="border-color:#f66">
- {{ markdownify "This documentation is for an unreleased version of the
Apache Flink Kubernetes Operator. We recommend you use the latest [stable
version](https://ci.apache.org/projects/flink/flink-kubernetes-operator-docs-stable/)."}}
+ {{ markdownify "This documentation is for an unreleased version of the
Apache Flink Kubernetes Operator. We recommend you use the latest [stable
version](https://nightlies.apache.org/flink/flink-kubernetes-operator-docs-stable/)."}}
</blockquote>
</article>
{{ end }}