Skip to content

Commit

Permalink
chore: synced file(s) with honestbank/.github
Browse files Browse the repository at this point in the history
  • Loading branch information
honestbank-bot committed Sep 26, 2024
1 parent e069206 commit 84ce15f
Show file tree
Hide file tree
Showing 3 changed files with 181 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,16 @@ repos:
args: ["docs"]
language: system
pass_filenames: false
- id: commit-msg-spell-check
name: commit-msg-spell-check
entry: ./spell-check.sh
language: script
stages: [ "commit-msg" ]
- id: append-ticket-id
name: Append Ticket ID to Commit Message
entry: ./append-ticket-id.sh
language: script
stages: [ commit-msg ]
# Run this at the end so that we don't end up in infinite loop
# where the end of line fixer runs first and then the docs and fmt
# and other hooks that modify files will break it again.
Expand Down
50 changes: 50 additions & 0 deletions append-ticket-id.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
#!/bin/bash

# Function to get the current branch name
get_current_branch() {
git branch --show-current
}

# Function to get the commit message
get_commit_message() {
cat "$1"
}

# Function to write the commit message
write_commit_message() {
echo "$2" > "$1"
}

# Function to extract the ticket ID from the branch name
extract_ticket_id() {
echo "$1" | grep -o -E '(acq|da|data|dec|devop|ds|it|mlops|nerds|qa|sec|spe|ss)-[0-9]+' | tr '[:lower:]' '[:upper:]'
}

# Main script
main() {
if [ $# -eq 0 ]; then
echo "commit message file not found, are you sure you set the stage for this hook to be in stages: [ commit-msg ]?"
exit 1
fi

commit_message_file="$1"
branch_name=$(get_current_branch)
ticket_id=$(extract_ticket_id "$branch_name")

if [ -z "$ticket_id" ]; then
echo "Warning: No ticket ID found in branch name '$branch_name'"
exit 0
fi

commit_message=$(get_commit_message "$commit_message_file")
first_line=$(echo "$commit_message" | head -n 1)

# Check if the first line already contains the ticket_id
if ! echo "$first_line" | grep -qi "$ticket_id"; then
first_line="$first_line [$ticket_id]"
commit_message="$first_line$(echo "$commit_message" | tail -n +2)"
write_commit_message "$commit_message_file" "$commit_message"
fi
}

main "$@"
121 changes: 121 additions & 0 deletions spell-check.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
#!/bin/bash

# Function to check if Aspell is installed
check_aspell() {
if command -v aspell > /dev/null; then
return 1
else
echo "Aspell is not installed. Automatically installing"
return 0
fi
}

# Function to install Aspell on Debian-based systems
install_aspell_debian() {
echo "Attempting to install Aspell on Debian-based system..."
sudo apt-get update && sudo apt-get install -y aspell
}

# Function to install Aspell on macOS
install_aspell_mac() {
echo "Attempting to install Aspell on macOS..."
brew install aspell
}

# Main logic
if check_aspell; then
# Identify the platform
case "$(uname -s)" in
Linux)
if [ -f /etc/debian_version ]; then
install_aspell_debian
else
echo "Unsupported Linux distribution."
fi
;;
Darwin)
install_aspell_mac
;;
*)
echo "Unsupported operating system."
;;
esac
fi


read -r -d '' dictionary <<'EOF'
personal_ws-1.1 en 2
anteraja
argocd
artajasa
bersama
bigquery
brankas
brankass
cardmember
checkly
checkov
ci
cloudkms
confluentinc
coreapi
deadletter
deadletters
decrypter
ekyc
encrypter
finexus
freshchat
goka
golang
hnst
honestbank
honestcard
jq
json
kafdrop
menubook
mst
nonk8s
noti
opentracing
perf
perso
pushgateway
rclone
resc
roleset
rolesets
rtrw
rudderstack
schemaregistry
snyk
strimzi
terratest
ulid
usecase
waitlist
waitlisted
yaml
EOF

echo "$dictionary" > dictionary.text

# Your string to check
string=$(cat $1)

echo "$string"

# Check spelling
misspelled=$(echo "$string" | aspell --personal ./dictionary.text list)

rm dictionary.text

# If the misspelled variable is not empty, there are spelling errors
if [ -n "$misspelled" ]; then
echo "Spelling errors found:"
echo "$misspelled"
exit 1
else
exit 0
fi

0 comments on commit 84ce15f

Please sign in to comment.