-
Notifications
You must be signed in to change notification settings - Fork 250
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve/Standardize alias
#3011
Merged
Merged
Changes from 12 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
40a11d4
Improve/Standardize `alias` in `command_step`
thejcannon 28d101c
Update block_step.md
thejcannon d2247a8
Update group_step.md
thejcannon 7480186
Update input_step.md
thejcannon d0fb4ea
Update trigger_step.md
thejcannon f806568
Update wait_step.md
thejcannon aed806e
Update command_step.md
thejcannon e41ab1d
Update block_step.md
thejcannon 2b19227
Update group_step.md
thejcannon 28ad2dd
Update input_step.md
thejcannon 1949a3f
Update trigger_step.md
thejcannon 047ff0d
Update wait_step.md
thejcannon 5861808
Update pages/pipelines/command_step.md
thejcannon File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,9 +22,10 @@ Required attributes: | |
<tr> | ||
<td><code>command</code></td> | ||
<td> | ||
The shell command/s to run during this step. This can be a single line of commands, or a list of commands that must all pass. Also available as the alias <code>commands</code>.<br> | ||
The shell command/s to run during this step. This can be a single line of commands, or a list of commands that must all pass.<br> | ||
<em>Example:</em> <code>"build.sh"</code><br> | ||
<em>Example:</em><br><code>- "npm install"</code><br><code>- "tests.sh"</code> | ||
<em>Example:</em><br><code>- "npm install"</code><br><code>- "tests.sh"</code><br> | ||
<em>Alias:</em>em> <code>commands</code> | ||
thejcannon marked this conversation as resolved.
Show resolved
Hide resolved
|
||
</td> | ||
</tr> | ||
</table> | ||
|
@@ -118,9 +119,9 @@ Optional attributes: | |
<tr> | ||
<td><code>key</code></td> | ||
<td> | ||
A unique string to identify the step. The value is available in the <code>BUILDKITE_STEP_KEY</code> <a href="/docs/pipelines/environment-variables">environment variable</a>.<br> | ||
A unique string to identify the command step. The value is available in the <code>BUILDKITE_STEP_KEY</code> <a href="/docs/pipelines/environment-variables">environment variable</a>.<br> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks! |
||
Keys can not have the same pattern as a UUID (<code>xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx</code>).<br> | ||
<em>Example:</em> <code>"linter"</code> | ||
<em>Example:</em> <code>"linter"</code><br> | ||
<em>Alias:</em> <code>identifier</code> | ||
</td> | ||
</tr> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure why
bloack_step.md
uses<p>
for all the table cells, but none of the others do 🤔There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good question @thejcannon , and thanks for pointing this out. I'm not sure why this is the case either.
I'll remove these
<p></p>
elements from this table then; this also appears to affect about 1/2 the HTML tables on this page.