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
If milestone was not defined in the rule, then only issues with milestones would be searched.
The semantic is now:
- No milestone set, consider issues without or without milestones
- Milestone is set consider only issues with the given milestone
- Milestone is * consider only issues with a milestone (any)
- Milestone is NONE consider only issues with no milestones set
Code was refactored and unit tests were added
Copy file name to clipboardexpand all lines: docs/Configuring.md
+4-1
Original file line number
Diff line number
Diff line change
@@ -104,7 +104,10 @@ The configuration for issues has the following attributes:
104
104
- `Assignee`(Optional. String). The user to search for issues assigned to. If omitted assignee(s) are not relevant.
105
105
- `Author`(Optional. String). The user to search for issues created by. If omitted author is not relevant.
106
106
- `Mention`(Optional. String). The user or team to search for issues mentioned in. If omitted mention is not relevant.
107
-
- `Milestone`(Optional. Integer). The milestone **number** (not name) to search for issues in. If omitted milestone is not relevant (you can also specify `*` for all milestones).
107
+
- `Milestone`(Optional. Integer). The milestone **number** (not name) to search for issues in.
108
+
- If omitted milestone (or empty) is not relevant, issues with or without a milestone will be considered.
109
+
- Use `*` issues that have any milestone set.
110
+
- Use `NONE` to search for issues with no milestone.
108
111
- `Labels`(Optional. Array of strings). The labels to search for issues with. If omitted labels are not relevant.
109
112
- `OnlyCreatedBeforeWorkflowCreated`(optional. Boolean). If true only issues created before the workflow run was started will be considered. If false all issues will be considered.
0 commit comments