Skip to content

Instantly share code, notes, and snippets.

@atharvai
Created October 27, 2016 13:07
Show Gist options
  • Save atharvai/16996fbb73442f8a1cfb5bffb11c412e to your computer and use it in GitHub Desktop.
Save atharvai/16996fbb73442f8a1cfb5bffb11c412e to your computer and use it in GitHub Desktop.
GITHUB_USER = ''
GITHUB_PASSWORD = ''
GITHUB_AUTH = (GITHUB_USER, GITHUB_PASSWORD)
REPO = '' # format is username/repo
JIRA_SERVER = 'https://jira.com'
JIRA_USER = '' # user must have permissions to create tickets and modify reporter.
JIRA_PASSWORD = ''
JIRA_AUTH = (JIRA_USER, JIRA_PASSWORD)
JIRA_PROJECT = '' # Project key
JIRA_TICKET_TYPE = 'Task' # ticket type name
# Map for Github user names to jira user names
user_map = {
'github_user': 'jira_user',
}
# map for github labels to JIRA labels. Any github labels not in this map will be ignored.
labels_map = {
'github_label': 'jira_label',
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment