Skip to content

Commit

Permalink
hooks: Add a push_git_ref post-deploy hook.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexmv committed Apr 5, 2023
1 parent 8a771c7 commit c519ba4
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
21 changes: 21 additions & 0 deletions puppet/zulip/files/hooks/post-deploy.d/push_git_ref.hook
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#!/usr/bin/env bash

set -e
set -u

if [ -z "${ZULIP_NEW_MERGE_BASE_COMMIT:-}" ]; then
echo "push_git_ref: Can't push because deploy is not from git!"
exit 0
fi

if ! repo=$(crudini --get /etc/zulip/zulip.conf push_git_ref repo); then
echo "push_git_ref: No repo set! Set push_git_ref.repo in /etc/zulip/zulip.conf"
exit 0
fi

if ! ref=$(crudini --get /etc/zulip/zulip.conf push_git_ref ref); then
echo "push_git_ref: No ref set! Set push_git_ref.ref in /etc/zulip/zulip.conf"
exit 0
fi

git push -f "$repo" "$ZULIP_NEW_MERGE_BASE_COMMIT:$ref"
9 changes: 9 additions & 0 deletions puppet/zulip/manifests/hooks/push_git_ref.pp
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# @summary Push the merge_base to a git repo after deploy
#
class zulip::hooks::push_git_ref {
include zulip::hooks::base

zulip::hooks::file { [
'post-deploy.d/push_git_ref.hook',
]: }
}

0 comments on commit c519ba4

Please sign in to comment.