-
Notifications
You must be signed in to change notification settings - Fork 19
Open
Description
Per discussion on moby/moby#28143 (comment), we should have a way to detect if labels on an issue were manually corrected. This may be a difficult one, but initial thoughts;
- add a label "manual-override" (e.g.) that tells poule to not apply labels
- detect if the issue/PR has a "person X removed label xyz" action, and if so, don't re-apply that label (may be expensive)
- detect if labels of a specific kind are already present (e.g., if a "area/xyz" label is already present, don't add a different area, likewise for "kind/xyz")
- other suggestions?