"No matching validator for module type jira:command" Error When Using jira:command

Hi everyone,

I’m developing a Forge app for Jira and trying to use the jira:command module. However, as soon as I call invoke(), I get the following error:

My Manifest File:

modules:
  jira:command:
    - key: test-command
      title: Test Dialog
      shortcut: i r
      target:
        resource: customui
        render: modal  # Using Custom UI, so I set it to modal.
      icon: arrow-right
      keywords:
        - test

resources:
  - key: customui
    path: customui/build
    tunnel:
      port: 3000


Things I’ve Tried:

:white_check_mark: Checked if my CLI is up to date with forge --version.
:white_check_mark: Ran forge lint to validate the manifest (no errors).
:white_check_mark: Deployed with forge deploy and reinstalled with forge install --upgrade.
:white_check_mark: Ensured that the function I’m invoking is defined in the manifest.

Is there something I’m missing? Does jira:command require any additional configuration?

Thanks in advance!

1 Like