From 5997b49c116c5a113320e3fe566456cdadc654df Mon Sep 17 00:00:00 2001 From: Ovv Date: Thu, 20 Jul 2017 21:54:00 +0200 Subject: [PATCH] dothub config --- .dothub.repo.yml | 66 ++++++++++++++++++++++++++++++++++++++++++++++++ .travis.yml | 9 +++++++ 2 files changed, 75 insertions(+) create mode 100644 .dothub.repo.yml diff --git a/.dothub.repo.yml b/.dothub.repo.yml new file mode 100644 index 0000000..7d8236f --- /dev/null +++ b/.dothub.repo.yml @@ -0,0 +1,66 @@ +collaborators: + mikefromit: + permission: admin + mrasband: + permission: admin + ovv: + permission: admin + seanson: + permission: admin +hooks: + travis: + active: true + config: + domain: notify.travis-ci.org + token: '********' + user: Ovvovy + events: + - create + - delete + - issue_comment + - member + - membership + - public + - pull_request + - push + - repository +labels: + bug: + color: ee0701 + difficulty/easy: + color: c2e0c6 + difficulty/hard: + color: e99695 + difficulty/medium: + color: fef2c0 + difficulty/newcomers: + color: c5def5 + documentation: + color: 1d76db + etc/blocked: + color: b60205 + etc/duplicate: + color: cccccc + etc/invalid: + color: cccccc + etc/question: + color: cccccc + etc/wontfix: + color: cccccc + feature: + color: d93f0b + help wanted: + color: 128A0C + proposal: + color: 5319e7 +options: + allow_merge_commit: false + allow_rebase_merge: true + allow_squash_merge: true + description: Slack plugin for Sir-bot-a-lot + has_downloads: true + has_issues: true + has_wiki: false + homepage: https://sirbot-slack.rtfd.io + name: sirbot-slack + private: false diff --git a/.travis.yml b/.travis.yml index 5362ca9..3646905 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,6 +21,9 @@ script: - python setup.py test - python setup.py doc +before_deploy: + - pip install dothub + deploy: - provider: script script: curl -X POST http://readthedocs.org/build/sirbot-slack @@ -28,6 +31,12 @@ deploy: repo: pyslackers/sirbot-slack branch: master python: "3.6" + - provider: script + script: "yes | dothub repo --owner pyslackers --repository sirbot-slack push" + on: + repo: pyslackers/sirbot-slack + branch: master + python: "3.6" - provider: pypi distributions: sdist bdist_wheel skip_upload_docs: true