Skip to content

Commit 4efb1c8

Browse files
authored
Disable release note generation (#7921)
until the docs migration workflow is finalised, disable release note generation
1 parent 90c96d9 commit 4efb1c8

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

.github/scripts/release-version-update.sh

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ DEPLOYMENT_PATH="${ROOTDIR}/deployments"
99
EXAMPLES_PATH="${ROOTDIR}/examples"
1010
DEBUG=${DEBUG:-"false"}
1111

12-
DOCS_TO_UPDATE_FOLDER=${ROOTDIR}/site/content
1312
FILES_TO_UPDATE_IC_VERSION=(
1413
"${ROOTDIR}/.github/data/version.txt"
1514
"${ROOTDIR}/README.md"
@@ -120,11 +119,6 @@ for i in "${FILE_TO_UPDATE_HELM_CHART_VERSION[@]}"; do
120119
fi
121120
done
122121

123-
# update docs with new versions
124-
echo -n "${new_ic_version}" > ./site/layouts/shortcodes/nic-version.html
125-
echo -n "${new_helm_chart_version}" > ./site/layouts/shortcodes/nic-helm-version.html
126-
echo -n "${new_operator_version}" > ./site/layouts/shortcodes/nic-operator-version.html
127-
128122
# update examples with new versions
129123
example_files=$(find "${EXAMPLES_PATH}" -type f -name "*.md")
130124
for i in ${example_files}; do

.github/workflows/release-pr.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,9 @@ jobs:
6868
.github/scripts/release-version-update.sh \
6969
${{ github.event.inputs.current_version }} ${{ github.event.inputs.current_helm_version }} ${{ github.event.inputs.current_operator_version }} \
7070
${{ github.event.inputs.new_version }} ${{ github.event.inputs.new_helm_version }} ${{ github.event.inputs.new_operator_version }}
71-
.github/scripts/release-notes-update.sh ${{ github.event.inputs.new_version }} ${{ github.event.inputs.new_helm_version }} "${{ github.event.inputs.k8s_versions }}" "${{ github.event.inputs.release_date }}"
71+
# .github/scripts/release-notes-update.sh \
72+
# ${{ github.event.inputs.new_version }} ${{ github.event.inputs.new_helm_version }} "${{ github.event.inputs.k8s_versions }}" \
73+
# "${{ github.event.inputs.release_date }}"
7274
7375
- name: Create Pull Request
7476
uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8

0 commit comments

Comments
 (0)