From 639e99634d29f59ffabc6141f363e15e7ce4bb0c Mon Sep 17 00:00:00 2001 From: Derek Su Date: Sun, 26 Jan 2025 23:22:41 +0800 Subject: [PATCH] WIP Signed-off-by: Derek Su --- .github/ISSUE_TEMPLATE/fix-cve-issues-for-release.md | 6 +++--- .github/ISSUE_TEMPLATE/regular-tasks-for-feature-release.md | 6 +++--- .github/ISSUE_TEMPLATE/release.md | 2 +- .github/workflows/create-release-task.yml | 1 + 4 files changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/fix-cve-issues-for-release.md b/.github/ISSUE_TEMPLATE/fix-cve-issues-for-release.md index 590bdc5728..a43546f6a3 100644 --- a/.github/ISSUE_TEMPLATE/fix-cve-issues-for-release.md +++ b/.github/ISSUE_TEMPLATE/fix-cve-issues-for-release.md @@ -1,7 +1,7 @@ --- name: Fix CVE Issues for Release about: Security issue fix task for a release -title: "[RELEASE] Fix CVE Issues for v" +title: "[RELEASE] Fix CVE Issues for {{ env.RELEASE_VERSION }}" labels: ["release/task", "area/security", "area/install-uninstall-upgrade"] assignees: '' @@ -10,11 +10,11 @@ assignees: '' ## What's the task? Please describe Identify and resolve CVE issues of Longhorn components: -- https://github.com/longhorn/longhorn/blob/v.x/deploy/longhorn-images.txt +- https://github.com/longhorn/longhorn/blob/{{ env.BRANCH_NAME }}/deploy/longhorn-images.txt ## Describe the sub-tasks -- [ ] Identify CVE issues in Longhorn components for v. +- [ ] Identify CVE issues in Longhorn components for {{ env.RELEASE_VERSION }}. - [ ] Resolve the identified CVE issues. - [ ] Perform CVE scans and possible fixes for each stage: Pre-RCs, RC1, RC2, etc. diff --git a/.github/ISSUE_TEMPLATE/regular-tasks-for-feature-release.md b/.github/ISSUE_TEMPLATE/regular-tasks-for-feature-release.md index acef4f011f..63e3c4803b 100644 --- a/.github/ISSUE_TEMPLATE/regular-tasks-for-feature-release.md +++ b/.github/ISSUE_TEMPLATE/regular-tasks-for-feature-release.md @@ -1,14 +1,14 @@ --- name: Regular Tasks for Feature Release about: Regular tasks for a feature release -title: "[RELEASE] Regular Tasks for Feature Release v.0" -labels: release/task +title: "[RELEASE] Regular Tasks for Feature Release {{ env.RELEASE_VERSION }}" +labels: ["release/task", "area/install-uninstall-upgrade"] assignees: '' --- ## What's the task? Please describe -Regular tasks for feature release v.0 must be completed well before the release, during the development phase. +Regular tasks for feature release {{ env.RELEASE_VERSION }} must be completed well before the release, during the development phase. For OS distro updates for SLES and SLE Micro, need to update for each patch release as well. diff --git a/.github/ISSUE_TEMPLATE/release.md b/.github/ISSUE_TEMPLATE/release.md index 2556a101e5..5c73df2736 100644 --- a/.github/ISSUE_TEMPLATE/release.md +++ b/.github/ISSUE_TEMPLATE/release.md @@ -2,7 +2,7 @@ name: Release Task about: Create a release task title: "[RELEASE] Release {{ env.RELEASE_VERSION }}" -labels: release/task +labels: ["release/task", "area/install-uninstall-upgrade"] assignees: '' --- diff --git a/.github/workflows/create-release-task.yml b/.github/workflows/create-release-task.yml index fe10903a28..a069910bcf 100644 --- a/.github/workflows/create-release-task.yml +++ b/.github/workflows/create-release-task.yml @@ -60,3 +60,4 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} RELEASE_VERSION: ${{ github.event.inputs.release_version }} FEATURE_RELEASE: ${{ env.FEATURE_RELEASE }} + BBRANCH_NAME: ${{ env.BBRANCH_NAME }}