mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
feat: add git hook sign
Signed-off-by: Xinwei Xiong(cubxxw-openim) <3293172751nss@gmail.com>
This commit is contained in:
parent
667d9e33d7
commit
ada9acf218
2
.github/workflows/openim-ci.yml
vendored
2
.github/workflows/openim-ci.yml
vendored
@ -19,7 +19,7 @@ jobs:
|
|||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
go_version: [1.18, 1.19, 1.20]
|
go_version: ['1.18', '1.19', '1.20']
|
||||||
os: [ubuntu-latest, macOS-latest]
|
os: [ubuntu-latest, macOS-latest]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
@ -75,4 +75,18 @@ then
|
|||||||
printError "Please fix your commit message to match kubecub coding standards"
|
printError "Please fix your commit message to match kubecub coding standards"
|
||||||
printError "https://gist.github.com/cubxxw/126b72104ac0b0ca484c9db09c3e5694#file-githook-md"
|
printError "https://gist.github.com/cubxxw/126b72104ac0b0ca484c9db09c3e5694#file-githook-md"
|
||||||
exit 1
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
### Add Sign-off-by line to the end of the commit message
|
||||||
|
# Get local git config
|
||||||
|
NAME=$(git config user.name)
|
||||||
|
EMAIL=$(git config user.email)
|
||||||
|
|
||||||
|
# Check if the commit message contains a sign-off line
|
||||||
|
grep -qs "^Signed-off-by: " "$1"
|
||||||
|
SIGNED_OFF_BY_EXISTS=$?
|
||||||
|
|
||||||
|
# Add "Signed-off-by" line if it doesn't exist
|
||||||
|
if [ $SIGNED_OFF_BY_EXISTS -ne 0 ]; then
|
||||||
|
echo -e "\nSigned-off-by: $NAME <$EMAIL>" >> "$1"
|
||||||
fi
|
fi
|
Loading…
x
Reference in New Issue
Block a user