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
I work on a project which has "two projects" in JIRA. Currently I can do some things like jira issue and such but when it comes to querying both projects like with jira issue or jira sprint I can't include results from both.
e.g.
jira sprint list --current -a$(jira me) --project ENT
works.
jira sprint list --current -a$(jira me) --project CFE
works.
But
jira sprint list --current -a$(jira me) --project ENT --project CFE
doesn't include both projects in the list of issue.
Any ideas on how to solve this with the current codebase?
If not, maybe I'll try to submit a PR before long as I love this tool!
The text was updated successfully, but these errors were encountered:
decent workaround is to use --plain and have my sprint script like this:
jira sprint list --current -a$(jira me) --project CFE --plain
jira sprint list --current -a$(jira me) --project ENT --plain
works for me but having them mixed together would be nice, and also avoiding having to specify --project would be nice, just add two projects to .config/.jira/.config.yml
Hello,
I work on a project which has "two projects" in JIRA. Currently I can do some things like
jira issue
and such but when it comes to querying both projects like withjira issue
orjira sprint
I can't include results from both.e.g.
works.
works.
But
doesn't include both projects in the list of issue.
Any ideas on how to solve this with the current codebase?
If not, maybe I'll try to submit a PR before long as I love this tool!
The text was updated successfully, but these errors were encountered: