toddfarmer commented on issue #14507:
URL: https://github.com/apache/arrow/issues/14507#issuecomment-1324346218
The logic has been updated as follows:
```
if issue_type in ["Bug"]:
return "Type: bug"
if issue_type in ["Improvement", "Wish", "New Feature"]:
return "Type: enhancement"
if issue_type in ["Task", "Sub-task"]:
return "Type: task"
if issue_type in ["Test"]:
return "Type: test"
return None
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]