Skip to content

Instantly share code, notes, and snippets.

@thagler
Created May 6, 2025 13:44
Show Gist options
  • Save thagler/4016c78c7fae0f5f9b438be3a9c90714 to your computer and use it in GitHub Desktop.
Save thagler/4016c78c7fae0f5f9b438be3a9c90714 to your computer and use it in GitHub Desktop.
GPT Assistant Action: Fetch Jira Data - INSTRUCTIONS

Jira Integration Setup Instructions

Steps

  • Visit this Gist and copy the raw file. Paste this into the Schema field.
  • Edit the content in two places:
    • Replace PROJECT_KEY_HERE with the Jira key for your project.
  • Generate a password hash using your email address and Jira API key. You can do this one of two ways:
    • In Terminal, enter:
      echo -n 'EMAIL_ADDRESS:JIRA_API_KEY' | base64 | pbcopy
      This will copy the password hash into your clipboard.
    • Ask GPT to generate a base64 hash from this string:
      EMAIL_ADDRESS:JIRA_API_KEY
      
      You can use the Preview window to the right of the Assistant configuration screen.
  • Open the Authentication modal and select:
    • Auth Type: Basic
    • In the API Key field, type:
      Basic PASSWORD_HASH
      
    • Save your changes.

You should now see two available actions:

  • fetchJiraIssues
  • fetchProjectMetadata

Use the test buttons to confirm functionality.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment