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
{{ message }}
This repository was archived by the owner on Jul 11, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -50,12 +50,24 @@ The `${{ secrets.GITHUB_TOKEN }}` token can be used only when all project column
50
50
2.`repo` to access information in private repositories
51
51
3.`user` to access information in user repositories (if needed)
52
52
53
+
### Filtering cards mirroring
53
54
55
+
Cards can be filtered from mirroring by specifying additional inputs on the action workflow.
54
56
57
+
**type_filter**
55
58
59
+
Filters mirrored cards only to the specified type. Must be one of
60
+
-`content` (linked issue or PR)
61
+
-`note`
56
62
63
+
**label_filter**
57
64
65
+
Filters mirrored cards based labels that match the input. Note cards cannot be tagged with labels, and will never be filtered based on this input.
58
66
67
+
Label filters use exact, case sensitive comparisons to determine whether to mirror a card. Label filter inputs can contain multiple labels separated by commas (`'first, second'`), and will be mirrored if any labels match (i.e. `OR` logic).
59
68
69
+
**content_filter**
60
70
71
+
Filters mirrored cards based on the displayed card content. Issue/PR titles is evaluated when they are linked as cards, otherwise the card's note text is used.
61
72
73
+
Content filters use partial, case insensitive comparisons when determining which cards to mirror. Content filter inputs can contain multiple filters separated by commas (`'first, second'`), and will be mirrored if any content matches are found (i.e. `OR` logic). Content filters containing commas must be wrapped in quotes (`'first, second, "matching, with a comma"'`)
0 commit comments