A slackbot plugin that queries the JIRA API for information about a ticket when mentioned in a channel.
- Setup slackbot
pip install slackbotjira
- In slackbot_settings.py:
- Add 'slackbotjira' to PLUGINS list
import os
to use environment variables for JIRA user/pass- Configure Python Variables in slackbot_settings.py
- JIRA_URL = '{JIRA URL}'
- JIRA_AUTH = (os.environ['JIRA_USER'], os.environ['JIRA_PASS'])
- JIRA_PROJECTS = ['SPT'] # JIRA Project Keys
- Configure Environment Variables for Authorization
- JIRA_USER
- JIRA_PASS
The MIT License (see LICENSE)