update test sha1 with github signature

fix the error x_hub_signature format: 
bad hook signature: expecting sha1=b5522ca84a491c0e7e457829356b6d89a836622b and got b5522ca84a491c0e7e457829356b6d89a836622b
error: exit status 1
This commit is contained in:
Alexandre DEVELY 2021-10-28 22:17:37 +02:00 committed by GitHub
parent 6b3623f67a
commit 7e794f691d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,7 +12,7 @@ debug() {
# Validate Github hook
signature=$(echo -n "$1" | openssl sha1 -hmac "$GITHUB_SECRET" | sed -e 's/^.* //')
[ "$signature" != "$x_hub_signature" ] && die "bad hook signature: expecting $x_hub_signature and got $signature"
[ "sha1=$signature" != "$x_hub_signature" ] && die "bad hook signature: expecting $x_hub_signature and got $signature"
# Validate parameters
payload=$1
@ -34,4 +34,4 @@ then
issue_url=$(echo $payload | jq .issue.url -r)
sender=$(echo $payload | jq .sender.login -r)
echo "notify: New issue from $sender: $issue_url"
fi
fi