Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commita34adc3

Browse files
committed
2 parentsbe0cb86 +fb0087a commita34adc3

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

‎_docs/pipelines/steps.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ You can set it to either `false` or `true`:
369369
The final part is the step implementation. Here you can define exactly the YAML that this step will insert in the pipeline. You can use any of the built-in steps in Codefresh, and even add multiple steps.
370370

371371
>**NOTE**
372-
Currently you cannot nest custom pipeline steps. We are aware of this limitation and are actively working on it, but at the time of writing you cannot use a typed step within another typed step.
372+
Currently you cannot nest custom pipeline steps. We are aware of this limitation, but at the time of writing you cannot use a typed step within another typed step.
373373

374374
Once you are done with your step, use the Codefresh CLI to upload it to the marketplace. If you want the step to be available only to you and your team make sure that the property`isPublic` is false (and then it will not be shown in the marketplace).
375375

‎_docs/pipelines/variables.md‎

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,9 +128,11 @@ The table below describes the system variables.
128128
| {% raw %}`${{CF_BUILD_INITIATOR}}`{% endraw %} | The username of the user who initiated the build.<br> If the build is initiated by a Git webhook, as for example from a PR, this variable returns the webhook user.<br>If the build is restarted manually, the variable always returns the username of the person who restarted the build. |
129129
| {% raw %}`${{CF_ACCOUNT}}`{% endraw %} | The Codefresh account for this build. |
130130
| {% raw %}`${{CF_COMMIT_URL}}`{% endraw %} | The commit URL. |
131-
| {% raw %}`${{CF_COMMIT_MESSAGE}}`{% endraw %} | The commit message of the Git repository revision, at the time of execution.<br/> The messages quotes are escaped (i.e. ' is not \', " is now \"). |
132-
| {% raw %}`${{CF_COMMIT_MESSAGE_ESCAPED}}`{% endraw %} | The commit message of the Git repository revision, at the time of execution.<br/> Special characters are escaped. |
133-
| {% raw %}`"${{CF_REVISION}}"`{% endraw %} | The revision of the Git repository of the main pipeline, at the time of execution. <br/> To get the abbreviated 7-character revision hash as used in Git, use {% raw %}`${{CF_SHORT_REVISION}}`{% endraw %}. <br>**NOTE**:To tag the image as a string with quotes, use {% raw %}`${{CF_SHORT_REVISION}}`{% endraw %} . |
131+
| {% raw %}`${{CF_COMMIT_MESSAGE}}`{% endraw %} | The commit message of the Git repository revision at the time of execution.<br/> Only quotes in the message are escaped (`'` is escaped `\'` and `"` is escaped as `\"`).<br>To get the title of the pull request, use {% raw %}`${{CF_PULL_REQUEST_TITLE}}`{% endraw %}. |
132+
| {% raw %}`${{CF_COMMIT_MESSAGE_ESCAPED}}`{% endraw %} | The commit message of the Git repository revision at the time of execution with special characters _escaped_. <br> To get the escaped title of the pull request, use {% raw %}`${{CF_PULL_REQUEST_TITLE_ESCAPED}}`{% endraw %}. |
133+
| {% raw %}`${{CF_PULL_REQUEST_TITLE}}`{% endraw %} | The _unescaped_ title of the pull request that triggered the pipeline build.<br/> To escape special characters, use {% raw %}`${{CF_PULL_REQUEST_TITLE_ESCAPED}}`{% endraw %}. |
134+
| {% raw %}`${{CF_PULL_REQUEST_TITLE_ESCAPED}}`{% endraw %} | The title of the pull request that triggered the pipeline build, with special characters _escaped_. <br>To not escape special characters, use {% raw %}`${{CF_PULL_REQUEST_TITLE}}`{% endraw %}. |
135+
| {% raw %}`${{CF_REVISION}}`{% endraw %} | The revision of the Git repository of the main pipeline, at the time of execution. <br/> To get the abbreviated 7-character revision hash as used in Git, use {% raw %}`${{CF_SHORT_REVISION}}`{% endraw %}. <br>**NOTE**:To tag the image as a string with quotes, use {% raw %}`${{CF_SHORT_REVISION}}`{% endraw %} . |
134136
| {% raw %}`${{CF_VOLUME_NAME}}`{% endraw %} | The [shared volume]({{site.baseurl}}/docs/pipelines/introduction-to-codefresh-pipelines/#sharing-the-workspace-between-build-steps) defined in [compositions]({{site.baseurl}}/docs/pipelines/steps/composition/). |
135137
| {% raw %}`${{CF_VOLUME_PATH}}`{% endraw %} | The mounted path of the [shared volume]({{site.baseurl}}/docs/pipelines/introduction-to-codefresh-pipelines/#sharing-the-workspace-between-build-steps) within a freestyle container. In the current implementation it expands to `/codefresh/volume`. |
136138
| {% raw %}`${{CF_BUILD_TRIGGER}}`{% endraw %} | The indication of how the current build was triggered:{::nomarkdown} <ul><li><code class="highlighter-rouge">build</code>:The build was triggered by clicking the Build button</li><li><code class="highlighter-rouge">webhook</code>: The build was triggered from a control version webhook.</ul>{:/} |

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp