Upload Watson time logs to Jira from the CLI! Selects Watson time logs based on the configurable mapping rules, formats those logs to Tempo format, and uploads to the appropriate Jira issues. Will not double-write logs, and makes no local edits.
$ pip install watson-jira
- Set up Jira authentication:
watson-jira init
- Create a watson log with a Jira issue number in the tags:
watson add -f 10:00 -t 11:00 project1 +sprint +JIRA-123 +code
- Sync the logs to Jira:
watson-jira sync
Config is stored in $XDG_CONFIG_HOME/.config/watson-jira/config.yaml
.
jira
section should contain Jira base URL and one of the authentication methods.
server: <<Jira base URL>>
See Atlassian docs. Add the following to the config file:
email: <<email>>
apiToken: <<API token>>
See Atlassian docs. Add the following to the config file:
personalAccessToken: <<PAT>>
- login to Jira in the browser
- open Network tab in the developer tools
- copy the cookie from the request header
- add the following to the config file:
cookie: <<cookie>>
mappings
section contains list of mapping rules.
Mapping rule has name and type. For each Watson log, Watson-Jira tries to find the name in the tags. If found, then the Jira issue number is resolved according to the type definition.
Mapping precedence is of the following order:
name: vacation
type: single_issue
issue: JIRA-1
This type always returns the one specified Jira issue number.
Watson example: watson add -f 10:00 -t 18:00 none +vacation
name: maintenance
type: issue_per_project
projects:
project1: JIRA-2
project2: JIRA-3
This type returns Jira issue number based on the project name.
Watson example: watson add -f 10:00 -t 11:00 project2 +maintenance +dependencies-upgrade
If no mapping is set then it will default to resolving the Jira issue number from the first tag which matches the issue number regex.
Watson example: watson add -f 10:00 -t 11:00 project1 +sprint +JIRA-123 +code
For any Watson log, which doesn't match any of the mappings, the Jira issue number will be tried to be resolved from the project name. If the Jira issue number is set in both the project name and in a tag then the project name will be used. Jira issue numbers are intended to be set in the tags, this behaviour is here for backwards compatibility.
Watson example: watson add -f 10:00 -t 11:00 JIRA-123 +investigation
Watson example: watson add -f 10:00 -t 11:00 JIRA-123 +investigation +JIRA-2
--> JIRA-123 will be used, not JIRA-2, since the project name takes precedence.
jira:
server: http://localhost:8080
cookie: atlassian.xsrf.token=<redacted>; JSESSIONID=<redacted>
mappings:
- name: vacation
type: single_issue
issue: HR-123
- name: maintenance
type: issue_per_project
projects:
project1: JIRA-1
project2: JIRA-2
$ watson-jira logs
$ watson-jira logs --tempo-format
$ watson-jira sync
$ watson-jira sync --from 3 --interactive
$ watson-jira --help