diff options
author | Nick Hilliard <nick@foobar.org> | 2015-12-27 18:19:36 +0000 |
---|---|---|
committer | Nick Hilliard <nick@foobar.org> | 2015-12-27 18:19:36 +0000 |
commit | 201c02551d96a070f8d55936aba350f772649465 (patch) | |
tree | c188329c2528681af35835391d5df9c208bab39f /lib/oxidized/hook/exec.rb | |
parent | 6a09fc99989d9282d938e7dc2d48a30ad6ef9ad6 (diff) |
expose git repo name and commit oid in hook mechanism and environment variables
Diffstat (limited to 'lib/oxidized/hook/exec.rb')
-rw-r--r-- | lib/oxidized/hook/exec.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/oxidized/hook/exec.rb b/lib/oxidized/hook/exec.rb index af2aeb1..58d6fd5 100644 --- a/lib/oxidized/hook/exec.rb +++ b/lib/oxidized/hook/exec.rb @@ -71,6 +71,8 @@ class Exec < Oxidized::Hook "OX_NODE_MSG" => ctx.node.msg.to_s, "OX_NODE_GROUP" => ctx.node.group.to_s, "OX_EVENT" => ctx.event.to_s, + "OX_REPO_COMMITREF" => ctx.commitref.to_s, + "OX_REPO_NAME" => ctx.node.repo.to_s, ) end if ctx.job |