Merge branch 'enable-pipeline-events-by-default' into 'master'
Enable pipeline events by default This should probably be included in !5620 but missed. See merge request !6278
This commit is contained in:
commit
1417437590
2 changed files with 2 additions and 0 deletions
|
@ -21,6 +21,7 @@ v 8.12.0 (unreleased)
|
|||
- Change merge_error column from string to text type
|
||||
- Reduce contributions calendar data payload (ClemMakesApps)
|
||||
- Add `web_url` field to issue, merge request, and snippet API objects (Ben Boeckel)
|
||||
- Enable pipeline events by default !6278
|
||||
- Move parsing of sidekiq ps into helper !6245 (pascalbetz)
|
||||
- Expose `sha` and `merge_commit_sha` in merge request API (Ben Boeckel)
|
||||
- Set path for all JavaScript cookies to honor GitLab's subdirectory setting !5627 (Mike Greiling)
|
||||
|
|
|
@ -12,6 +12,7 @@ class Service < ActiveRecord::Base
|
|||
default_value_for :tag_push_events, true
|
||||
default_value_for :note_events, true
|
||||
default_value_for :build_events, true
|
||||
default_value_for :pipeline_events, true
|
||||
default_value_for :wiki_page_events, true
|
||||
|
||||
after_initialize :initialize_properties
|
||||
|
|
Loading…
Reference in a new issue