From 80bff8b38cc4ad386850051c1ffe9c15efa6ee19 Mon Sep 17 00:00:00 2001 From: Sascha Grunert Date: Mon, 17 Apr 2023 08:57:46 +0200 Subject: [PATCH] Disable dependency gathering for release notes Right now the collection of the dependencies is broken for the v1.26.0 tag, because we missed vendoring the following bits: ``` k8s.io/dynamic-resource-allocation => k8s.io/kubernetes/staging/src/k8s.io/dynamic-resource-allocation k8s.io/kms => k8s.io/kubernetes/staging/src/k8s.io/kms ``` For now we disable the dependency collection to unbreak the `release` GitHub action workflow. Signed-off-by: Sascha Grunert --- hack/release-notes.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/hack/release-notes.sh b/hack/release-notes.sh index b41064aaa8..fc818fca6d 100755 --- a/hack/release-notes.sh +++ b/hack/release-notes.sh @@ -23,4 +23,5 @@ release-notes \ --org kubernetes-sigs \ --repo cri-tools \ --required-author "" \ + --dependencies=false \ --output release-notes.md