mirror of
https://git.uploadfilter24.eu/lerentis/terraform-provider-gitea.git
synced 2024-11-05 10:28:12 +00:00
8 lines
181 B
Bash
8 lines
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
|