testing auto change
Signed-off-by: James Strong <strong.james.e@gmail.com>
This commit is contained in:
parent
a00cf624b7
commit
ef5bf06c61
1 changed files with 15 additions and 0 deletions
15
hack/changelog.sh
Executable file
15
hack/changelog.sh
Executable file
|
@ -0,0 +1,15 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
set -o errexit
|
||||
set -o nounset
|
||||
set -o pipefail
|
||||
|
||||
declare -a mandatory
|
||||
mandatory=(
|
||||
LINES
|
||||
RELEASE
|
||||
)
|
||||
|
||||
gh pr list -R kubernetes/ingress-nginx -s merged -L ${LINES} -B main | cut -f1,2 | awk '{ printf "* [%s](https://github.com/kubernetes/ingress-nginx/pull/%s) %s\n",$1,$1, substr($0,6)}'
|
||||
|
||||
|
Loading…
Reference in a new issue