gitlab-org--gitlab-foss/doc/raketasks/web_hooks.md

28 lines
893 B
Markdown
Raw Normal View History

2014-05-27 12:12:15 +00:00
# Web hooks
2014-04-24 22:48:22 +00:00
## Add a web hook for **ALL** projects:
RAILS_ENV=production bundle exec rake gitlab:web_hook:add URL="http://example.com/hook"
2014-04-24 22:48:22 +00:00
## Add a web hook for projects in a given **NAMESPACE**:
RAILS_ENV=production bundle exec rake gitlab:web_hook:add URL="http://example.com/hook" NAMESPACE=acme
2014-04-24 22:48:22 +00:00
## Remove a web hook from **ALL** projects using:
RAILS_ENV=production bundle exec rake gitlab:web_hook:rm URL="http://example.com/hook"
2014-04-24 22:48:22 +00:00
## Remove a web hook from projects in a given **NAMESPACE**:
RAILS_ENV=production bundle exec rake gitlab:web_hook:rm URL="http://example.com/hook" NAMESPACE=acme
2014-04-24 22:48:22 +00:00
## List **ALL** web hooks:
RAILS_ENV=production bundle exec rake gitlab:web_hook:list
2014-04-24 22:48:22 +00:00
## List the web hooks from projects in a given **NAMESPACE**:
RAILS_ENV=production bundle exec rake gitlab:web_hook:list NAMESPACE=/
> Note: `/` is the global namespace.