generated from kubernetes/kubernetes-template-project
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: added custom action for PR title checker
Signed-off-by: Ankit152 <ankitkurmi152@gmail.com>
- Loading branch information
Showing
3 changed files
with
60 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
#!/bin/bash | ||
|
||
# Copyright 2024 The Kubernetes Authors. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
# Define regex patterns | ||
WIP_REGEX="^\W?WIP\W" | ||
TAG_REGEX="^\[[[:alnum:]\._-]*\]" | ||
PR_TITLE="$1" | ||
|
||
# Trim WIP and tags from title | ||
trimmed_title=$(echo "$PR_TITLE" | sed -E "s/$WIP_REGEX//" | sed -E "s/$TAG_REGEX//" | xargs) | ||
|
||
# Normalize common emojis in text form to actual emojis | ||
trimmed_title=$(echo "$trimmed_title" | sed -E "s/:warning:/⚠/g") | ||
trimmed_title=$(echo "$trimmed_title" | sed -E "s/:sparkles:/✨/g") | ||
trimmed_title=$(echo "$trimmed_title" | sed -E "s/:bug:/🐛/g") | ||
trimmed_title=$(echo "$trimmed_title" | sed -E "s/:book:/📖/g") | ||
trimmed_title=$(echo "$trimmed_title" | sed -E "s/:rocket:/🚀/g") | ||
trimmed_title=$(echo "$trimmed_title" | sed -E "s/:seedling:/🌱/g") | ||
|
||
# Check PR type prefix | ||
if [[ "$trimmed_title" =~ ^⚠ ]] || [[ "$trimmed_title" =~ ^✨ ]] || [[ "$trimmed_title" =~ ^🐛 ]] || [[ "$trimmed_title" =~ ^📖 ]] || [[ "$trimmed_title" =~ ^🚀 ]] || [[ "$trimmed_title" =~ ^🌱 ]]; then | ||
echo "PR title is valid: $trimmed_title" | ||
exit 0 | ||
else | ||
echo "Error: No matching PR type indicator found in title." | ||
echo "You need to have one of these as the prefix of your PR title:" | ||
echo "- Breaking change: ⚠ (:warning:)" | ||
echo "- Non-breaking feature: ✨ (:sparkles:)" | ||
echo "- Patch fix: 🐛 (:bug:)" | ||
echo "- Docs: 📖 (:book:)" | ||
echo "- Release: 🚀 (:rocket:)" | ||
echo "- Infra/Tests/Other: 🌱 (:seedling:)" | ||
exit 1 | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
name: "PR Title Validator" | ||
description: "Validates PR titles based on predefined conventions." | ||
inputs: | ||
github-token: | ||
description: "GitHub Token" | ||
required: true | ||
runs: | ||
using: "bash" | ||
main: "../pr-title-checker.sh" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters