Skip to content

Commit c38bbfd

Browse files
Add versioning for [skip ci], previously omitted (#18875)
* Add versioning, previously missed out * Update content/actions/guides/about-continuous-integration.md Co-authored-by: mc <42146119+mchammer01@users.noreply.github.com> Co-authored-by: mc <42146119+mchammer01@users.noreply.github.com>
1 parent 8dc7968 commit c38bbfd

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

content/actions/guides/about-continuous-integration.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ For a definition of common terms, see "[Core concepts for {% data variables.prod
5353

5454
Browse the complete list of CI workflow templates offered by {% data variables.product.product_name %} in the {% if currentVersion == "free-pro-team@latest" %}[actions/starter-workflows](https://github.com/actions/starter-workflows/tree/main/ci) repository{% else %} `actions/starter-workflows` repository on {% data variables.product.product_location %}{% endif %}.
5555

56+
{% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.0" or currentVersion == "github-ae@next" %}
5657
### Skipping workflow runs
5758

5859
If you want to temporarily prevent a workflow from being triggered, you can add a skip instruction to the commit message. Workflows that would otherwise be triggered `on: push` or `on: pull_request`, won't be triggered if you add any any of the following strings to the commit message in a push, or the HEAD commit of a pull request:
@@ -72,6 +73,7 @@ You won't be able to merge the pull request if your repository is configured to
7273
**Note:** Skip instructions only apply to the `push` and `pull_request` events. For example, adding `[skip ci]` to a commit message won't stop a workflow that's triggered `on: pull_request_target` from running.
7374

7475
{% endnote %}
76+
{% endif %}
7577

7678
### Notifications for workflow runs
7779

0 commit comments

Comments
 (0)