Method: Gitlab::Client::BuildVariables#update_group_variable
- Defined in:
- lib/gitlab/client/build_variables.rb
#update_group_variable(group, key, value, **opts) ⇒ Gitlab::ObjectifiedHash
Update a group’s build variable.
119 120 121 |
# File 'lib/gitlab/client/build_variables.rb', line 119 def update_group_variable(group, key, value, **opts) put("/groups/#{url_encode group}/variables/#{key}", body: opts.merge(value: value)) end |