agile - Jira Release Notes - -
we use jira @ work our software development tickets. i'd able to, on release of version - email our team email address report on release, fixed, improved.
basic email containing: tickets type; order, prio, name, link, status.
i've tried searching over, nothing fits bill.
pdf view plugin » doesn't work jira cloud (also expensive hell)
maven changes plugin » use jenkins building, want jira release trigger email - not deployment to.
any ideas? triggered (or @ least compiled) via rest / webhooks? far teh internetz has come empty.
thanks :)
i haven't seen want except plugin mentioned write jira event listener plugin goes off versionreleaseevent can send email fetching issues version. (least should possible)
however question make reference jira cloud means custom plugin not option.
you use rest api monitor projects release versions:
/rest/api/2/project/{projectidorkey}/versions
and poll on fixed interval (1/2 hour example) see if have moved released: false
released: true
, if generate email , send out specific release.
so wouldn't automatic within 1/2 hour @ maximum email sent out or sooner if increased polling.
Comments
Post a Comment