You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -63,6 +63,8 @@ Tracks the commits in a [git](http://git-scm.com/) repository.
63
63
compatible (extended matching enabled, matches entire lines only). Ignored if
64
64
`tag_filter`is also specified.
65
65
66
+
* `tag_behaviour`: *Optional.* If `match_tagged` (the default), then the resource will only detect commits that are tagged with a tag matching `tag_regex` and `tag_filter`, and match all other filters. If `match_tag_ancestors`, then the resource will only detect commits matching all other filters and that are ancestors of a commit that are tagged with a tag matching `tag_regex` and `tag_filter`.
67
+
66
68
* `fetch_tags`: *Optional.* If `true` the flag `--tags` will be used to fetch
67
69
all tags in the repository. If `false` no tags will be fetched.
68
70
@@ -146,7 +148,7 @@ Tracks the commits in a [git](http://git-scm.com/) repository.
146
148
skipped
147
149
* `include_all_match`: *Optional.* Boolean wheater it should match all the include filters "AND", default: false
148
150
149
-
**Note**: *You must escape any regex sensitive characters, since the string is used as a regex filter.*
151
+
**Note**: *You must escape any regex sensitive characters, since the string is used as a regex filter.*
150
152
For example, using `[skip deploy]` or `[deploy skip]` to skip non-deployment related commits in a deployment pipeline:
0 commit comments