├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── index.coffee ├── package.json ├── script └── bootstrap ├── src └── bitbucket-pr.coffee └── test ├── bitbucket-pr_test.coffee └── support ├── approved.json ├── comment.json ├── created.json ├── declined.json ├── issue-commented.json ├── issue-created.json ├── issue-updated.json ├── merged.json ├── unapproved.json └── updated.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubot-archive/hubot-bitbucket-pr/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubot-archive/hubot-bitbucket-pr/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubot-archive/hubot-bitbucket-pr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubot-archive/hubot-bitbucket-pr/HEAD/README.md -------------------------------------------------------------------------------- /index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubot-archive/hubot-bitbucket-pr/HEAD/index.coffee -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubot-archive/hubot-bitbucket-pr/HEAD/package.json -------------------------------------------------------------------------------- /script/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubot-archive/hubot-bitbucket-pr/HEAD/script/bootstrap -------------------------------------------------------------------------------- /src/bitbucket-pr.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubot-archive/hubot-bitbucket-pr/HEAD/src/bitbucket-pr.coffee -------------------------------------------------------------------------------- /test/bitbucket-pr_test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubot-archive/hubot-bitbucket-pr/HEAD/test/bitbucket-pr_test.coffee -------------------------------------------------------------------------------- /test/support/approved.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubot-archive/hubot-bitbucket-pr/HEAD/test/support/approved.json -------------------------------------------------------------------------------- /test/support/comment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubot-archive/hubot-bitbucket-pr/HEAD/test/support/comment.json -------------------------------------------------------------------------------- /test/support/created.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubot-archive/hubot-bitbucket-pr/HEAD/test/support/created.json -------------------------------------------------------------------------------- /test/support/declined.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubot-archive/hubot-bitbucket-pr/HEAD/test/support/declined.json -------------------------------------------------------------------------------- /test/support/issue-commented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubot-archive/hubot-bitbucket-pr/HEAD/test/support/issue-commented.json -------------------------------------------------------------------------------- /test/support/issue-created.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubot-archive/hubot-bitbucket-pr/HEAD/test/support/issue-created.json -------------------------------------------------------------------------------- /test/support/issue-updated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubot-archive/hubot-bitbucket-pr/HEAD/test/support/issue-updated.json -------------------------------------------------------------------------------- /test/support/merged.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubot-archive/hubot-bitbucket-pr/HEAD/test/support/merged.json -------------------------------------------------------------------------------- /test/support/unapproved.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubot-archive/hubot-bitbucket-pr/HEAD/test/support/unapproved.json -------------------------------------------------------------------------------- /test/support/updated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hubot-archive/hubot-bitbucket-pr/HEAD/test/support/updated.json --------------------------------------------------------------------------------