From 4945737e72a70df0f02c79f042ab44b4f02e0706 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20Vald=C3=A9s?= Date: Thu, 21 Dec 2017 16:23:25 -0300 Subject: [PATCH] Fix typo Just a typo --- labs/test-the-pipeline.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/labs/test-the-pipeline.md b/labs/test-the-pipeline.md index 40852df..3799bb7 100644 --- a/labs/test-the-pipeline.md +++ b/labs/test-the-pipeline.md @@ -165,19 +165,19 @@ Checkout the master branch: git checkout master ``` -Merge the `new-message` and `master` branches and push the changes to the `pipeline-applicaiton` GitHub repository: +Merge the `new-message` and `master` branches and push the changes to the `pipeline-application` GitHub repository: ``` git merge new-message && git push origin master ``` -Create a new `1.0.0` tag and push it to the `pipeline-applicaiton` GitHub repository: +Create a new `1.0.0` tag and push it to the `pipeline-application` GitHub repository: ``` git tag 1.0.0 && git push origin --tags ``` -Pushing a new tag to the `pipeline-applicaiton` GitHub repository will trigger the `pipeline-qa-build` build trigger, which will in turn trigger the `pipeline-infrastructure-qa` build trigger. +Pushing a new tag to the `pipeline-application` GitHub repository will trigger the `pipeline-qa-build` build trigger, which will in turn trigger the `pipeline-infrastructure-qa` build trigger. The `pipeline-qa-build` build trigger pushes a commit to the `pipeline-infrastructure-qa` GitHub repository.