Jira Ticket Creation
Steps:
Login to Jira
Refer to the doc to get started: Get Started with JIRA. Start a project and name it Data Access Requests
Create an action
Once the condition is established add action to send a web request. Fill in the git link pointing to the repo : https://api.github.com/repos/org-name/data-access-requests/dispatches
Http Method : Post
Web Request Body : Custom Data
Custom data : { "event_type": "bigquery_access_request", "client_payload": { "ticket_id": "{{issue.key}}", "summary": "{{issue.summary}}", "description": "{{issue.description}}", "reporter": "{{issue.reporter.emailAddress}}" } }
Define Headers : Content Type - application/json, Authorization - token GitPAT token, Accept - application/vnd.github.v3+json
Validate the connection by creating a ticket/task with summary if required
For more information on automation rule creation refer to : Automation Rule Creation
Last updated