This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 36704fb9a7 Fix release docs for the helm chart (#38413)
36704fb9a7 is described below
commit 36704fb9a7fd9fd4409057592d657d8dde542ff2
Author: Jed Cunningham <[email protected]>
AuthorDate: Fri Mar 22 13:15:49 2024 -0600
Fix release docs for the helm chart (#38413)
---
dev/README_RELEASE_HELM_CHART.md | 2 +-
dev/chart/build_changelog_annotations.py | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev/README_RELEASE_HELM_CHART.md b/dev/README_RELEASE_HELM_CHART.md
index 889f97cf9a..42e3367983 100644
--- a/dev/README_RELEASE_HELM_CHART.md
+++ b/dev/README_RELEASE_HELM_CHART.md
@@ -202,7 +202,7 @@ breeze release-management prepare-helm-chart-tarball
--version ${VERSION} --vers
- Generate the binary Helm Chart release:
```shell
-breeze release-management prepare-helm-chart-packagte --sig
[email protected]
+breeze release-management prepare-helm-chart-package --sign-email
[email protected]
```
Warning: you need the `helm gpg` plugin to sign the chart (instructions to
install it above)
diff --git a/dev/chart/build_changelog_annotations.py
b/dev/chart/build_changelog_annotations.py
index 0a7e57844d..efc48857db 100755
--- a/dev/chart/build_changelog_annotations.py
+++ b/dev/chart/build_changelog_annotations.py
@@ -98,7 +98,7 @@ with open("chart/RELEASE_NOTES.rst") as f:
in_first_release = True
# Make sure we get past "significant features" before we actually
start keeping track
elif not past_significant_changes:
- if line == "New Features":
+ if line in TYPE_MAPPING:
section = line
past_significant_changes = True
elif not line.startswith("- "):