-
-
Notifications
You must be signed in to change notification settings - Fork 19.1k
Closed
Labels
Description
Feature Type
-
Adding new functionality to pandas
-
Changing existing functionality in pandas
-
Removing existing functionality in pandas
Problem Description
Comments containing "take" with leading spaces gets skipped by the issue_assign
job. Got a couple of experiences with this because I usually click Enter by reflex after typing in a comment. So my comment becomestake\n
, which gets skipped by this job
Feature Description
if: (!github.event.issue.pull_request) && github.event.comment.body == 'take' |
Add
trim()
command inside github.event.comment.body
if: (!github.event.issue.pull_request) && trim(github.event.comment.body) == 'take'
Alternative Solutions
NA; Enhancement is straight forward
Additional Context
No response
rhshadrach