How can i include the status from the issue in the commit acceptance

fabio marcelo October 31, 2012

Hi all,

We are using the plugin commit acceptance to block commits in SVN.

The commmit only can be accepted when the status from issue was "Implementing".

Please How can i include a line in perl script for that it read the status from issue in Jira.

Currently i am doing this through field Resolution. I would like to use the field status instead resolution:

Follow the line that i already tried :

1
2
$comment =~ m/($projectKey-\d+)/;
my $issue = $s->call("jira1.getIssue", $jiraLogin, $jiraPassword, $1)->result();
  • Add this line after "($acceptance, $comment) = split('\|', $result);"
1
2
3
4
5
if($issue.status() == "Draft")
{
$acceptance = 'false';
$comment = "Commits not accepted when the issue is in Draft state";
}

Please could you help me ?

Best Regards

Fabio

2 answers

0 votes
Midori
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
August 18, 2015

Fabio, the Commit Policy Plugin is the modern replacement for the old Commit Acceptance Plugin.

With this, you can verify the issue keys against a JQL query, which results in great flexibility. In your use case, just match the issue keys against a JQL like this:

status = Implementing

That's it. The JQL can contain any further filtering, against project, issue type, etc.

0 votes
fabio marcelo November 1, 2012

Hi

Please do you have any idea

Best Regards

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events