diff --git a/.github/workflows/create-draft-release-reusable.yml b/.github/workflows/create-draft-release-reusable.yml index 6e26bd1..861445b 100644 --- a/.github/workflows/create-draft-release-reusable.yml +++ b/.github/workflows/create-draft-release-reusable.yml @@ -25,10 +25,10 @@ jobs: - name: Write changelog to file env: VERSION: ${{ inputs.VERSION }} - # note: your repository needs to have this file. - # running this script should result in the file named CHANGELOG.md. shell: bash run: | + # Note: your repository needs to have this script. + # Running this script should result in a file named CHANGELOG.md, located in the base directory. ./hack/scripts/create_changelog.sh "${VERSION}" - name: Print out changelog diff --git a/.github/workflows/publish-release-reusable.yml b/.github/workflows/publish-release-reusable.yml index 4fe184e..996aac8 100644 --- a/.github/workflows/publish-release-reusable.yml +++ b/.github/workflows/publish-release-reusable.yml @@ -1,4 +1,4 @@ -name: Publish release +name: Publish release (reusable) on: workflow_call: diff --git a/.github/workflows/render-and-upload-manifests-reusbale.yml b/.github/workflows/render-and-upload-manifests-reusbale.yml index 343186e..1f99ebc 100644 --- a/.github/workflows/render-and-upload-manifests-reusbale.yml +++ b/.github/workflows/render-and-upload-manifests-reusbale.yml @@ -1,4 +1,4 @@ -name: Render and upload manifests +name: Render and upload manifests (reusable) on: workflow_call: @@ -33,6 +33,7 @@ jobs: VERSION: ${{ inputs.VERSION }} CRD_FILE: ${{ inputs.CRD_FILE }} shell: bash + # Note: your repository needs to have this script. run: ./hack/scripts/render_crd.sh "${VERSION}" "${CRD_FILE}" - name: Print out CR file