Hello Everyone,
I am trying to create an JIRA Automation rule on issue-creation with certain conditions based on components and labels to fire a GitHub action using webhooks to trigger a repository_dispatch event.
I am trying to pass the issue.key and issue.feilds.description to the GitHub Action in the custom data section shown below.
I am trying to use these variables inside the Custom data payload
{
"event_type": "test",
"client_payload": {
"featureBranch": "{{issue.key}}",
"featureDescription": "{{issue.fields.description}}"
}
}
I can see the GitHub action being triggered but its not passing the above mentioned variables to the action.
Apologies, got it working.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.