Metadata-Version: 2.1
Name: redmine-ci
Version: 0.2.4
Summary: Solve Redmine Status by Gitlab CI
Home-page: http://gitlab.khomp.corp/uilian/redmine-ci
Author: Khomp
Author-email: iot@khomp.com
License: MIT
Keywords: gitlab,ci,gitlab-ci,redmine,issue-tracker
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Requires-Dist: requests (>=2.19.1)
Requires-Dist: colorama (>=0.3.9)
Requires-Dist: termcolor (>=1.1.0)

# Redmine CI

Do you want to update redmine issue status by Gitlab CI?

This project is the answer! Solve your Redmine issue by Gitlab CI!

#### USAGE

```
usage: redmine-ci [-h] [--issue ISSUE] [--status STATUS] [--user USER]
                  [--server SERVER] [--token TOKEN] [--dry-run] [--version]
                  [--status-list] [--user-list]

Update issue on Redmine

optional arguments:
  -h, --help            show this help message and exit
  --issue ISSUE, -i ISSUE
                        Issue ID on Redmine
  --status STATUS, -s STATUS
                        New issue status
  --user USER, -u USER  User to be assigned
  --server SERVER, -r SERVER
                        Redmine server address
  --token TOKEN, -t TOKEN
                        Redmine auth Token
  --dry-run, -d         Do not push any change
  --version, -v         Show application version
  --status-list, -l     List supported status
  --user-list, -ul      List Redmine users
```

#### RUN

To list supported status names:

    $ redmine-ci --status-list

To show current status of issue 11234:

    $ redmine-ci --issue 11234

To update issue 11234 as "Working":

    $ redmine-ci --issue 11234 --status Working --token 89kjd182jd32897hr2

To assign issue 11234 to "uilian":

    $ redmine-ci --issue 11234 --user uilian --token 89kjd182jd32897hr2

#### API access key
Retrieve from the address https://redmine.in.khomp.com/my/account

#### INSTALL
To install by pip is just one step

##### Local
If you want to install by local copy

    pip install .

##### Remote
Or if you want to download our pip package

    pip install redmine-ci

#### REQUIREMENTS
- python 2.7 or 3

#### LICENSE
[MIT](LICENSE.md)


