Update CI Components authored by Slominski, Ryan's avatar Slominski, Ryan
...@@ -19,7 +19,7 @@ stages: ...@@ -19,7 +19,7 @@ stages:
3. [Control when the job should run](https://docs.gitlab.com/ci/jobs/job_control/) via [rules](https://docs.gitlab.com/ci/yaml/#rules). By default, the job will run on any push to GitLab. Here are some common options: 3. [Control when the job should run](https://docs.gitlab.com/ci/jobs/job_control/) via [rules](https://docs.gitlab.com/ci/yaml/#rules). By default, the job will run on any push to GitLab. Here are some common options:
**Default** **Default**
(same no rules) (same no rules)
``` ```
rules: rules:
...@@ -33,7 +33,7 @@ stages: ...@@ -33,7 +33,7 @@ stages:
- src/**/* - src/**/*
``` ```
**Manually** **Manually**
(only when you click New Pipeline button) (only when you click New Pipeline button)
``` ```
rules: rules:
... ...
......