- すべてのプロジェクトにWebhookを追加
- 名前空間内のプロジェクトに Webhook を追加します。
- プロジェクトから Webhook を削除します。
- を実行します。名前空間内のプロジェクトから Webhook を削除します。
- を実行してください。
- 名前空間内のプロジェクトの Webhook を一覧表示します。
Webhooks 管理 Rake タスク
GitLabはWebhook管理のためのRakeタスクを提供しています。
Webhookによるローカルネットワークへのリクエストは、管理者によって許可またはブロックすることができます。
すべてのプロジェクトにWebhookを追加
すべてのプロジェクトにWebhookを追加するには、以下を実行します:
# omnibus-gitlab
sudo gitlab-rake gitlab:web_hook:add URL="http://example.com/hook"
# source installations
bundle exec rake gitlab:web_hook:add URL="http://example.com/hook" RAILS_ENV=production
名前空間内のプロジェクトに Webhook を追加します。
特定のネームスペース内のすべてのプロジェクトに Webhook を追加するには、以下を実行します:
# omnibus-gitlab
sudo gitlab-rake gitlab:web_hook:add URL="http://example.com/hook" NAMESPACE=<namespace>
# source installations
bundle exec rake gitlab:web_hook:add URL="http://example.com/hook" NAMESPACE=<namespace> RAILS_ENV=production
プロジェクトから Webhook を削除します。
すべてのプロジェクトから Webhook を削除するには、以下を実行します:
# omnibus-gitlab
sudo gitlab-rake gitlab:web_hook:rm URL="http://example.com/hook"
# source installations
bundle exec rake gitlab:web_hook:rm URL="http://example.com/hook" RAILS_ENV=production
を実行します。名前空間内のプロジェクトから Webhook を削除します。
特定のネームスペース内のプロジェクトから Webhook を削除するには、以下を実行します:
# omnibus-gitlab
sudo gitlab-rake gitlab:web_hook:rm URL="http://example.com/hook" NAMESPACE=<namespace>
# source installations
bundle exec rake gitlab:web_hook:rm URL="http://example.com/hook" NAMESPACE=<namespace> RAILS_ENV=production
を実行してください。
すべてのWebhookを一覧表示するには、以下を実行します:
# omnibus-gitlab
sudo gitlab-rake gitlab:web_hook:list
# source installations
bundle exec rake gitlab:web_hook:list RAILS_ENV=production
名前空間内のプロジェクトの Webhook を一覧表示します。
指定した名前空間内のプロジェクトの Webhook をすべて一覧表示するには、以下を実行します:
# omnibus-gitlab
sudo gitlab-rake gitlab:web_hook:list NAMESPACE=<namespace>
# source installations
bundle exec rake gitlab:web_hook:list NAMESPACE=<namespace> RAILS_ENV=production