This provider can be used in workflows.As “step” to query data, example:
Copy
steps: - name: Query jira provider: jira config: "{{ provider.my_provider_name }}" with: ticket_id: {value} # The ticket id of the issue, optional. board_id: {value} # The board id of the issue.
As “action” to make changes or update data, example:
Copy
actions: - name: Query jira provider: jira config: "{{ provider.my_provider_name }}" with: summary: {value} # The summary of the issue. description: {value} # The description of the issue. issue_type: {value} # The type of the issue. project_key: {value} # The project key of the issue. board_name: {value} # The board name of the issue. issue_id: {value} # The issue id of the issue. labels: {value} # The labels of the issue. components: {value} # The components of the issue. custom_fields: {value} # The custom fields of the issue.