I’m trying to use the circleci/jira orb in a project and we keep getting the following error during the -jira/notify post-step:
Attempt to get Jira Issues from https://circleci.com/api/v1.1/project/github/...
jq: error (at <stdin>:2): Cannot iterate over null (null)
Exited with code 5
The JIRA integration in the settings seems to work, the CIRCLE_TOKEN environment variable has been set properly and the https://circleci.com/api/v1.1/project/github/… call does seem to yield parsible JSON with correctly formatted issue codes. The relevant config.yml info is set up like this:
version: 2.1
orbs:
jira: circleci/jira@1.0.5
jobs:
build:
...
workflows:
version: 2
build:
jobs:
- build:
post-steps:
- jira/notify
Does anyone know what might be causing this?