terraformDummyRepo2/examples/resources/gitea_git_hook/post-receive.sh
2022-08-30 21:02:06 +02:00

8 lines
No EOL
181 B
Bash

#!/bin/bash
while read oldrev newrev refname
do
branch=$(git rev-parse --symbolic --abbrev-ref $refname)
if [ "master" = "$branch" ]; then
# Do something
fi
done