Remove jenkins refs in gitlab

This commit is contained in:
Ethan Dennis
2022-09-06 17:14:44 -07:00
parent fa6f0e56ee
commit 21d697b5e3
4 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -18,7 +18,7 @@ In this lab we will build upon the `dry-run` command to override Valet's default
We will be performing a `dry-run` command to inspect the workflow that is converted by default. Run the following command within the codespace terminal:
```bash
gh valet dry-run jenkins gitlab --output-dir tmp --namespace valet --project terraform-example
gh valet dry-run gitlab --output-dir tmp --namespace valet --project terraform-example
```
The converted workflow that is generated by the above command can be seen below:
@@ -95,7 +95,7 @@ This method can use any valid ruby syntax and should return a `Hash` that repres
Now, we can perform another `dry-run` command and use the `--custom-transformers` CLI option to provide this custom transformer. Run the following command within your codespace terminal:
```bash
gh valet dry-run jenkins gitlab --output-dir tmp --namespace valet --project terraform-example --custom-transformers transformers.rb
gh valet dry-run gitlab --output-dir tmp --namespace valet --project terraform-example --custom-transformers transformers.rb
```
The converted workflow that is generated by the above command will now use the custom logic for the `artifacts.terraform` step.