We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26f38f6 commit 0b03f52Copy full SHA for 0b03f52
src/events/responses/pullState.js
@@ -118,6 +118,19 @@ exports.update = async function(pull, repo) {
118
const deletable = await check(pull, repo);
119
if (!deletable) continue;
120
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
134
const comments = await template.getComments({
135
number: number, owner: repoOwner, repo: repoName
136
});
0 commit comments