Skip to content

Commit 0b03f52

Browse files
committedAug 9, 2018
pull requests: Remove merge conflict labels during PR update checks.
1 parent 26f38f6 commit 0b03f52

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
 

‎src/events/responses/pullState.js

+13
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,19 @@ exports.update = async function(pull, repo) {
118118
const deletable = await check(pull, repo);
119119
if (!deletable) continue;
120120

121+
const {label} = this.cfg.pulls.status.mergeConflicts;
122+
123+
if (label) {
124+
try {
125+
await this.issues.removeLabel({
126+
owner: repoOwner, repo: repoName, number: number, name: label
127+
});
128+
} catch (e) {
129+
// although we could attempt to fetch labels of the pull request,
130+
// it's an extra API call, so we silently ignore the error instead.
131+
}
132+
}
133+
121134
const comments = await template.getComments({
122135
number: number, owner: repoOwner, repo: repoName
123136
});

0 commit comments

Comments
 (0)