Skip to content

Commit 56b5abc

Browse files
committed
include markdown docs changes
1 parent 3bec03c commit 56b5abc

1 file changed

Lines changed: 9 additions & 28 deletions

File tree

docs/input/docs/reference/configuration.md

Lines changed: 9 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -209,8 +209,10 @@ branches:
209209
ignore:
210210
sha: []
211211
paths: []
212+
tags: []
213+
branches: []
212214
```
213-
<sup><a href='/docs/workflows/GitFlow/v1.yml#L1-L168' title='Snippet source file'>snippet source</a> | <a href='#snippet-/docs/workflows/GitFlow/v1.yml' title='Start of snippet'>anchor</a></sup>
215+
<sup><a href='/docs/workflows/GitFlow/v1.yml#L1-L170' title='Snippet source file'>snippet source</a> | <a href='#snippet-/docs/workflows/GitFlow/v1.yml' title='Start of snippet'>anchor</a></sup>
214216
<!-- endSnippet -->
215217

216218
The supported built-in configuration for the `GitHubFlow` workflow (`workflow: GitHubFlow/v1`) looks like:
@@ -335,8 +337,10 @@ branches:
335337
ignore:
336338
sha: []
337339
paths: []
340+
tags: []
341+
branches: []
338342
```
339-
<sup><a href='/docs/workflows/GitHubFlow/v1.yml#L1-L117' title='Snippet source file'>snippet source</a> | <a href='#snippet-/docs/workflows/GitHubFlow/v1.yml' title='Start of snippet'>anchor</a></sup>
343+
<sup><a href='/docs/workflows/GitHubFlow/v1.yml#L1-L119' title='Snippet source file'>snippet source</a> | <a href='#snippet-/docs/workflows/GitHubFlow/v1.yml' title='Start of snippet'>anchor</a></sup>
340344
<!-- endSnippet -->
341345

342346
The preview built-in configuration (experimental usage only) for the `TrunkBased` workflow (`workflow: TrunkBased/preview1`) looks like:
@@ -446,8 +450,10 @@ branches:
446450
ignore:
447451
sha: []
448452
paths: []
453+
tags: []
454+
branches: []
449455
```
450-
<sup><a href='/docs/workflows/TrunkBased/preview1.yml#L1-L102' title='Snippet source file'>snippet source</a> | <a href='#snippet-/docs/workflows/TrunkBased/preview1.yml' title='Start of snippet'>anchor</a></sup>
456+
<sup><a href='/docs/workflows/TrunkBased/preview1.yml#L1-L104' title='Snippet source file'>snippet source</a> | <a href='#snippet-/docs/workflows/TrunkBased/preview1.yml' title='Start of snippet'>anchor</a></sup>
451457
<!-- endSnippet -->
452458

453459
The details of the available options are as follows:
@@ -674,31 +680,6 @@ ignore:
674680
Ignoring a tag does not ignore the commit it points to. The commit remains part
675681
of version calculation and can still be reached through other references.
676682

677-
#### branches
678-
679-
A sequence of regular expressions matching branch names that should not be used
680-
as auxiliary [version sources][version-sources]. Patterns are matched
681-
case-insensitively against the branch name without the local or remote prefix,
682-
so `release/old` and `origin/release/old` are treated as the same branch.
683-
Multiple patterns use OR semantics, and `^` and `$` can be used to anchor a
684-
match.
685-
686-
```yaml
687-
ignore:
688-
branches:
689-
- ^experimental/
690-
- ^release/old$
691-
```
692-
693-
The current branch, or an explicitly selected target branch, remains eligible
694-
even when its name matches. On a build server, ignored remote-tracking branches
695-
are not created or updated as local branches during normalization. Existing
696-
local branches are left untouched. Only references available in the repository
697-
can be matched.
698-
699-
Ignoring a branch does not ignore commits reachable from that branch. Shared
700-
history and tags on shared commits remain eligible for version calculation.
701-
702683
#### paths
703684

704685
A sequence of regular expressions that represent paths in the repository. Commits that modify these paths will be excluded from version calculations. For example, to filter out commits that belong to `docs`:

0 commit comments

Comments
 (0)