We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some feedback that was given to us from an open source developer 😸
Based on the Jira python library being used, the actual customfields themselves are just an additional key/value pair passed to the fields object: https://developer.atlassian.com/server/jira/platform/jira-rest-api-examples/#creating-an-issue-using-custom-fields
Here - https://github.com/github/ghas-jira-integration/blob/main/jiralib.py#L168 this method is where we would pass something like field={“customfield_0000”: “my_value”}
Ideally the custom field would be an arbitrary map the user passes into the github action.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Some feedback that was given to us from an open source developer 😸
Based on the Jira python library being used, the actual customfields themselves are just an additional key/value pair passed to the fields object: https://developer.atlassian.com/server/jira/platform/jira-rest-api-examples/#creating-an-issue-using-custom-fields
Here - https://github.com/github/ghas-jira-integration/blob/main/jiralib.py#L168 this method is where we would pass something like field={“customfield_0000”: “my_value”}
Ideally the custom field would be an arbitrary map the user passes into the github action.
The text was updated successfully, but these errors were encountered: