You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
chore: Updates JIRA query to include multiple issue types for unresolved issues (#3573)
* chore: Updates JIRA query to include multiple issue types for unresolved issues
* fix: Update JIRA query to include multiple issue types for declined issues
Copy file name to clipboardExpand all lines: .github/workflows/issues.yml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -79,7 +79,7 @@
79
79
ISSUE_NUMBER=${{ github.event.issue.number }}
80
80
JIRA_API_TOKEN=${{ secrets.JIRA_API_TOKEN }}
81
81
82
-
JIRA_QUERY="project = CLOUDP AND issuetype = Story AND resolution = Declined AND text ~ \"TF HELP: GitHub Issue n. $ISSUE_NUMBER\""
82
+
JIRA_QUERY="project = CLOUDP AND issuetype in (Story,Bug,Investigation) AND resolution = Declined AND text ~ \"TF HELP: GitHub Issue n. $ISSUE_NUMBER\""
83
83
84
84
# URL encode the query
85
85
JIRA_URL=$(echo "$JIRA_QUERY" | jq -s -R -r @uri)
@@ -129,7 +129,7 @@
129
129
ISSUE_NUMBER=${{ github.event.issue.number }}
130
130
JIRA_API_TOKEN=${{ secrets.JIRA_API_TOKEN }}
131
131
132
-
JIRA_QUERY="project = CLOUDP AND issuetype = Story AND resolution = Unresolved AND text ~ \"TF HELP: GitHub Issue n. $ISSUE_NUMBER\""
132
+
JIRA_QUERY="project = CLOUDP AND issuetype in (Story,Bug,Investigation) AND resolution = Unresolved AND text ~ \"TF HELP: GitHub Issue n. $ISSUE_NUMBER\""
0 commit comments