mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-14 19:58:45 +00:00
- update Make target; - update release workflow config; - update PR template (#2257)
Signed-off-by: Shuting Zhao <shutting06@gmail.com>
This commit is contained in:
parent
fb6e0f18ea
commit
6ba341ff9b
3 changed files with 9 additions and 2 deletions
6
.github/PULL_REQUEST_TEMPLATE.md
vendored
6
.github/PULL_REQUEST_TEMPLATE.md
vendored
|
@ -10,6 +10,12 @@ chance substantial changes will be requested or that the changes will be rejecte
|
||||||
You can discuss changes with maintainers in the [Kyverno Slack Channel](https://kubernetes.slack.com/).
|
You can discuss changes with maintainers in the [Kyverno Slack Channel](https://kubernetes.slack.com/).
|
||||||
-->
|
-->
|
||||||
|
|
||||||
|
## Milestone of this PR
|
||||||
|
<!--
|
||||||
|
|
||||||
|
Add the milestone label by commenting `/milestone 1.2.3`.
|
||||||
|
|
||||||
|
-->
|
||||||
## What type of PR is this
|
## What type of PR is this
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
|
|
3
.github/workflows/release.yaml
vendored
3
.github/workflows/release.yaml
vendored
|
@ -177,7 +177,8 @@ jobs:
|
||||||
|
|
||||||
release-cli-via-krew:
|
release-cli-via-krew:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: release-kyverno-cli
|
needs:
|
||||||
|
- create-release
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -222,7 +222,7 @@ release:
|
||||||
kustomize build ./definitions > ./definitions/release/install.yaml
|
kustomize build ./definitions > ./definitions/release/install.yaml
|
||||||
|
|
||||||
release-notes:
|
release-notes:
|
||||||
@bash -c 'while IFS= read -r line ; do if [[ "$$line" == "## "* && "$$line" != "## $(VERSION)"* ]]; then break ; fi; echo "$$line"; done < "CHANGELOG.md"' \
|
@bash -c 'while IFS= read -r line ; do if [[ "$$line" == "## "* && "$$line" != "## $(VERSION)" ]]; then break ; fi; echo "$$line"; done < "CHANGELOG.md"' \
|
||||||
true
|
true
|
||||||
|
|
||||||
kyverno-crd: controller-gen
|
kyverno-crd: controller-gen
|
||||||
|
|
Loading…
Add table
Reference in a new issue