Created
February 23, 2025 22:49
-
-
Save ushkinaz/426f3c8476b24b737dfca2de70b6a660 to your computer and use it in GitHub Desktop.
Reference full github path to backported commit
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
#!/bin/sh | |
. "$(dirname "$0")/_/husky.sh" | |
# Purpose: | |
# Reference sha1 of original repo if GitHub format. | |
# Repo is hardcoded atm | |
# Requires https://typicode.github.io/husky/ | |
# Path to the commit message file | |
COMMIT_MSG_FILE="$1" | |
# Extract the cherry-picked commit hash | |
CHERRY_PICKED_COMMIT=$(sed -nE 's/.*\(cherry picked from commit ([0-9a-f]+)\).*/\1/p' "$COMMIT_MSG_FILE") | |
if [ -n "$CHERRY_PICKED_COMMIT" ]; then | |
sed -i -E 's/\(cherry picked from commit ([0-9a-f]+)\)/\(Backported from nornagon\/cdda-guide@\1\)/' "$COMMIT_MSG_FILE" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment