diff options
author | ytti <saku@ytti.fi> | 2015-12-28 14:30:25 +0200 |
---|---|---|
committer | ytti <saku@ytti.fi> | 2015-12-28 14:30:25 +0200 |
commit | bbae7ec0a0873d31087196579eeec736aea8b825 (patch) | |
tree | d5f7147b0944dbfd4bca08220225213e90581685 /lib/oxidized/hook | |
parent | 6a09fc99989d9282d938e7dc2d48a30ad6ef9ad6 (diff) | |
parent | 1300400441870f0caad1f01f447a4d887c67b330 (diff) |
Merge pull request #251 from nickhilliard/master
expose git repo name and commit oid in hook mechanism and env-vars
Diffstat (limited to 'lib/oxidized/hook')
-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 |