ndaversa / hubot-jira-bot

Lets you search for JIRA tickets, open them, transition them thru different states, comment on them, rank them up or down, start or stop watching them or change who is assigned to a ticket. Also, notifications for assignments, mentions and watched tickets.
https://www.npmjs.com/package/hubot-jira-bot
MIT License
61 stars 43 forks source link

adding 'query' keyword for JQL queries #44

Closed kevinschmidt closed 6 years ago

kevinschmidt commented 7 years ago

Adding a query keyword to allow direct JQL queries, like so:

hubot jira query statusCategory!=Done AND cf[10003]=PROJ-696

The main use is in combination with hubot-alias to have a quick keyword translate into a complex query.

I based the implementation on the search keyword, using the query alias original associated with search.

In addition, I also added an option to disabled responses to ticket mentions.

ndaversa commented 6 years ago

@kevinschmidt thank you for this, looks good!

ndaversa commented 6 years ago

published this with version 7.4.0 on npm

kevinschmidt commented 6 years ago

thanks!