summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2019-04-03 09:05:28 +0000
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2019-04-03 09:05:28 +0000
commit478077747da82a3dfaafbebc1797b26b965b030f (patch)
tree148071084973e54a6e867545e96acffde9508fa0 /doc
parentc3c5190c014bf8509ba44f326be3b43ccb989beb (diff)
parent343e834330309b200c2d629ec6a4a2de2e5f29c3 (diff)
downloadgitlab-ce-478077747da82a3dfaafbebc1797b26b965b030f.tar.gz
Merge branch '47234-composable-auto-devops' into 'master'
Resolve "Composable Auto DevOps" Closes #47234 See merge request gitlab-org/gitlab-ce!26520
Diffstat (limited to 'doc')
-rw-r--r--doc/topics/autodevops/index.md15
1 files changed, 15 insertions, 0 deletions
diff --git a/doc/topics/autodevops/index.md b/doc/topics/autodevops/index.md
index fd99b06b863..7693109b3c4 100644
--- a/doc/topics/autodevops/index.md
+++ b/doc/topics/autodevops/index.md
@@ -699,6 +699,21 @@ renaming `.staging` to `staging`. Then make sure to uncomment the `when` key of
the `production` job to turn it into a manual action instead of deploying
automatically.
+### Using components of Auto-DevOps
+
+If you only require a subset of the features offered by Auto-DevOps, you can include
+individual Auto-DevOps jobs into your own `.gitlab-ci.yml`.
+
+For example, to make use of [Auto Build](#auto-build), you can add the following to
+your `.gitlab-ci.yml`:
+
+```yaml
+include:
+ - template: Jobs/Build.gitlab-ci.yml
+```
+
+Consult the [Auto DevOps template] for information on available jobs.
+
### PostgreSQL database support
In order to support applications that require a database,