mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-06-12 09:24:23 +00:00
add pr rules, fix script
This commit is contained in:
@@ -15,7 +15,7 @@ git log "${LATEST_TAG}..HEAD" --oneline | tee /tmp/release-changelogs.txt
|
||||
|
||||
count=$(cat /tmp/release-changelogs.txt | wc -l)
|
||||
|
||||
if [[ $(cat /tmp/release-changelogs.txt | grep fix) || $(cat /tmp/release-changelogs.txt | grep patch) || $(cat /tmp/release-changelogs.txt | grep chore) ]]; then
|
||||
if [[ $(cat /tmp/release-changelogs.txt | grep fix) || $(cat /tmp/release-changelogs.txt | grep patch) || $(cat /tmp/release-changelogs.txt | grep chore) || $(cat /tmp/release-changelogs.txt | grep docs) ]]; then
|
||||
PATCH=true
|
||||
fi
|
||||
|
||||
@@ -23,6 +23,13 @@ if [[ $(cat /tmp/release-changelogs.txt | grep feat) ]]; then
|
||||
MINOR=true
|
||||
fi
|
||||
|
||||
for commit in $(cut -d' ' -f1 /tmp/release-changelogs.txt); do
|
||||
git log --format=%B -n 1 $commit | grep "BREAKING CHANGE"
|
||||
if [ $? -eq 0 ]; then
|
||||
MAJOR=true
|
||||
fi
|
||||
done
|
||||
|
||||
for f in $(find api); do
|
||||
git diff "${LATEST_TAG}...${ORIGIN_MASTER}" --exit-code -- "${f}"
|
||||
if [ $? -eq 1 ]; then
|
||||
|
||||
Reference in New Issue
Block a user