Skip to content

Commit

Permalink
Add npmignore, and update the PR types
Browse files Browse the repository at this point in the history
  • Loading branch information
orta committed Dec 30, 2016
1 parent ce794f2 commit a832b69
Show file tree
Hide file tree
Showing 3 changed files with 60 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,7 @@ docs
.editorconfig
.babelrc
scripts
dangerfile.js
env
.eslintrc.json
jsconfig.json
2 changes: 1 addition & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

// Add your own contribution below

### 0.7.2
### 0.7.3

* Tweak the npmignore, ship less random stuff to others - orta

Expand Down
56 changes: 55 additions & 1 deletion source/dsl/GitHubDSL.js
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,60 @@ export interface GitHubPRDSL {
* The User who submitted the PR
* @type {GitHubUser}
*/
user: GitHubUser
user: GitHubUser,

/**
* The User who is assigned the PR
* @type {GitHubUser}
*/
assignee: GitHubUser,

/**
* The Users who are assigned to the PR
* @type {GitHubUser}
*/
assignees: GitHubUser[],

/**
* Has the PR been merged yet
* @type {boolean}
*/
merged: boolean,

/**
* The nuber of comments on the PR
* @type {number}
*/
comments: number,

/**
* The nuber of review-specific comments on the PR
* @type {number}
*/
review_comments: number,

/**
* The number of commits in the PR
* @type {number}
*/
commits: number,

/**
* The number of additional lines in the PR
* @type {number}
*/
additions: number,

/**
* The number of deleted lines in the PR
* @type {number}
*/
deletions: number,

/**
* The number of changed files in the PR
* @type {number}
*/
changed_files: number,
}

0 comments on commit a832b69

Please sign in to comment.