diff options
author | Gabriel Mazetto <gabriel@gitlab.com> | 2015-12-12 23:06:23 -0200 |
---|---|---|
committer | Gabriel Mazetto <gabriel@gitlab.com> | 2015-12-14 14:17:20 -0200 |
commit | 51ef4a2fed382833833f15afae1da3f98bfa5031 (patch) | |
tree | 00162d3dd3babadd7b137d2a3672fedc799cf7cb /config/gitlab.yml.example | |
parent | a5e449571bb941d65d33569a0f0db575a5b3d399 (diff) | |
download | gitlab-ce-51ef4a2fed382833833f15afae1da3f98bfa5031.tar.gz |
Sidekiq-cron configuration moved to gitlab.ymlfeature/sidekiq-cron-config
Diffstat (limited to 'config/gitlab.yml.example')
-rw-r--r-- | config/gitlab.yml.example | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/config/gitlab.yml.example b/config/gitlab.yml.example index db378118f85..54dddb41ac4 100644 --- a/config/gitlab.yml.example +++ b/config/gitlab.yml.example @@ -144,6 +144,15 @@ production: &base # plain_url: "http://..." # default: http://www.gravatar.com/avatar/%{hash}?s=%{size}&d=identicon # ssl_url: "https://..." # default: https://secure.gravatar.com/avatar/%{hash}?s=%{size}&d=identicon + ## Auxiliary jobs + # Periodically executed jobs, to self-heal Gitlab, do external synchronizations, etc. + # Please read here for more information: https://github.com/ondrejbartas/sidekiq-cron#adding-cron-job + cron_jobs: + # Flag stuck CI builds as failed + stuck_ci_builds_worker: + cron: "0 0 * * *" + + # # 2. GitLab CI settings # ========================== |