项目作者: ruettenm

项目描述 :
This tool parses your JIRA activity stream and returns a list of your workitems grouped by day.
高级语言: TypeScript
项目地址: git://github.com/ruettenm/jira-activity.git
创建时间: 2018-07-27T11:56:29Z
项目社区:https://github.com/ruettenm/jira-activity

开源协议:MIT License

下载


JIRA activity

This tool parses your jira activity stream and returns a list of your work items grouped by day.
The official atlassian documentation for the jira activity stream can be found here.

How to use

Initial setup

  1. # installation
  2. npm i -g jira-activity
  3. # setup your defaults
  4. jira-activity hostname some.hostname
  5. jira-activity username your@username.com

Show your activity

  1. # if you have set your defaults
  2. jira-activity list
  3. # if you do not have defaults or wants to override them
  4. jira-activity list -u your@username.com -h some.hostname
  5. # if you only want to see your activities for the current week or month
  6. jira-activity list -f week
  7. jira-activity list -f month

Example Image

How to develop

Initial setup

  1. nvm use
  2. # install yarn
  3. npm i -g yarn
  4. # install dependencies
  5. yarn

How to call the library

  1. yarn dev [command]
  2. # e.g. >>
  3. yarn dev list
  4. yarn dev defaults

How to release a new version

  1. commit all your changes
  2. execute the release (with npm NOT yarn) command. The command will automatically do a version bump.
    ```
    npm run release

Versioning package…
Pushing new release tag to GitHub…
Creating a new GitHub release…
v1.5.0 released to GitHub - https://github.com/ruettenm/jira-activity/releases/tag/v1.5.0
v1.5.0 released to npm - https://www.npmjs.com/package/jira-activity
```