diff options
author | Zeger-Jan van de Weg <git@zjvandeweg.nl> | 2017-08-24 13:01:33 +0200 |
---|---|---|
committer | Zeger-Jan van de Weg <git@zjvandeweg.nl> | 2017-08-31 22:25:25 +0200 |
commit | 6ed490401f49a8941dc7a9e3757ec4012f14ef0b (patch) | |
tree | 058ba4c324208c486d2a8bd7326bcf0e292b32a7 /config | |
parent | e58428382265f02639a7fc8c1bfcc6311564c0d0 (diff) | |
download | gitlab-ce-6ed490401f49a8941dc7a9e3757ec4012f14ef0b.tar.gz |
Implement the implied CI/CD config for AutoDevOps
Behind an application setting, which defaults to false, this commit
implements the implied CI/CD config. Which means that in the case we
can't find the `.gitlab-ci.yml` on the commit we want to start a
pipeline for, we fall back to an implied configuration.
For now the Bash template has been copied to
`Auto-Devops.gitlab-ci.yml` so the tests actually work.
Fixes #34777
Diffstat (limited to 'config')
-rw-r--r-- | config/initializers/0_inflections.rb | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/config/initializers/0_inflections.rb b/config/initializers/0_inflections.rb index f977104ff9d..1ad9ddca877 100644 --- a/config/initializers/0_inflections.rb +++ b/config/initializers/0_inflections.rb @@ -10,5 +10,10 @@ # end # ActiveSupport::Inflector.inflections do |inflect| - inflect.uncountable %w(award_emoji project_statistics system_note_metadata) + inflect.uncountable %w( + award_emoji + project_statistics + system_note_metadata + project_auto_devops + ) end |