Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
Signed-off-by: Logan McAnsh <logan@mcan.sh>
  • Loading branch information
mcansh committed May 2, 2023
1 parent e4902e7 commit bafef9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11108,7 +11108,7 @@ async function main() {
let prCommentArgs = ["pr", "comment", String(pr.number), "--body", prComment];
promises.push((0, execa_1.execa)("gh", prCommentArgs));
debug(`> gh ${prCommentArgs.join(" ")}`);
if (PR_LABELS_TO_REMOVE) {
if (PR_LABELS_TO_REMOVE && isStable) {
let prRemoveLabelArgs = [
"pr",
"edit",
Expand All @@ -11128,7 +11128,7 @@ async function main() {
let issueCloseArgs = ["issue", "close", String(issue)];
debug(`> gh ${issueCloseArgs.join(" ")}`);
promises.push((0, execa_1.execa)("gh", issueCloseArgs));
if (ISSUE_LABELS_TO_REMOVE) {
if (ISSUE_LABELS_TO_REMOVE && isStable) {
let issueRemoveLabelArgs = [
"issue",
"edit",
Expand Down

0 comments on commit bafef9a

Please sign in to comment.