reacjira = emoji reaction + jira ticket create
add a configuration like below to the reacjira.toml file.
[[reacjiras]]
emoji = "test_task"
project = "TEST"
issue_type = "Task"
epic_key = "FOO-1234"
description = """h2. foo
bar
"""
slack_message = ""if you add an emoji reaction (e.g. :test_task:) to slack messege, reacjira will create a jira ticket in "Test" Project as IssueType="Task".
cp config.toml config.secret.toml
$EDITOR config.secret.toml ## write your slack & jira token
make run
main -> bot -> service -> {config, slack, jira}
| package | role |
|---|---|
| main | An endpoint of this application. |
| bot | Controls communication with slack RTM |
| service | Provide a high level service by using slack, jira clients |
| slack | a client of slack |
| jira | a client of jira |
| config | It defines the config object |

