Jump to content

Jira - mark as open


Jon Marshall

Recommended Posts

Hi all

We have a Triage process for tickets and the ticket status follows:

Backlog > Triaged > 'In Progress'

 

Triaged are available to be picked up by developers for action. When developers select the "Mark as open" upon creating the branch, the ticket does not get moved on to 'In Progress'

Can anyone tell me where I can configure what actually constitutes 'Open' in Plastic SCM?

2019-08-24_12-38-12.png

Link to comment
Share on other sites

Hi,

1. Could you attach the Plastic client log?

C:\Users\carlos\AppData\Local\plastic4\logs\plastic.debug.log.txt

2. Could you run the following query in your browser?

https://my.jira.com/rest/api/2/issues/{issueId}/transitions

- Our code is processing the definition of the transition following the next steps from 1 to 3:

[{ // transition definition
  "to": { // status definition
      "name": "...", // 2. status.name == "In Progress"
      "statusCategory": {
        "key": "..." // 1. status.statusCategory.key == "indeterminate"
        "name": "..." // 3. status.statusCategory.name == "In Progress"
      }
     
}]

Regards,

Carlos.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...