We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcf99f4 commit fe86792Copy full SHA for fe86792
utils/jira.js
@@ -46,6 +46,8 @@ class Jira {
46
const response = await this.request(`/workflow/search?workflowName=${encodeURIComponent(workflowName)}&expand=statuses,transitions`)
47
const data = await response.json()
48
49
+ console.log('GOT DATA', data)
50
+
51
if (!data.values || data.values.length === 0) {
52
throw new Error(`Workflow "${workflowName}" not found`)
53
}
0 commit comments