Skip to content

Commit 1c59f53

Browse files
committed
Add help messages for tag time boundaries
Signed-off-by: dodo920306 <dodo920306@gmail.com>
1 parent fa788b3 commit 1c59f53

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<div>
2+
Minimum age of tags (in days) to <strong>include</strong> when discovering tags.
3+
Tags newer than this value are ignored.
4+
Tag age is calculated from the tag creation / commit timestamp to the time the
5+
scan runs.
6+
Leave this field blank to <strong>not</strong> filter out tags based on a minimum age
7+
(no lower age bound).
8+
Examples:
9+
<ul>
10+
<li><code>7</code> – ignore tags created in the last 7 days (only tags at least 7 days old are used).</li>
11+
<li><code>0</code> – do not ignore tags for being too new (equivalent to leaving it blank).</li>
12+
</ul>
13+
When used together with <em>Ignore tags older than</em> (<code>atMostDays</code>),
14+
this value should be less than or equal to the <em>older than</em> value to define a valid age range.
15+
</div>
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<div>
2+
Maximum age of tags (in days) to <strong>include</strong> when discovering tags.
3+
Tags older than this value are ignored.
4+
Tag age is calculated from the tag creation / commit timestamp to the time the
5+
scan runs.
6+
Leave this field blank to <strong>not</strong> filter out tags based on a maximum age
7+
(no upper age bound).
8+
Examples:
9+
<ul>
10+
<li><code>7</code> – ignore tags older than 7 days (only tags from the last 7 days are used).</li>
11+
<li><code>30</code> – ignore tags older than 30 days (only tags from the last 30 days are used).</li>
12+
</ul>
13+
When used together with <em>Ignore tags newer than</em> (<code>atLeastDays</code>),
14+
this value should be greater than or equal to the <em>newer than</em> value so that the
15+
age range is consistent.
16+
</div>

0 commit comments

Comments
 (0)