We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8db2c23 commit 7286206Copy full SHA for 7286206
actions/release-helper/index.js
@@ -81,6 +81,13 @@ async function run() {
81
issue_number: payload.issue.number,
82
labels: [FLAGGED_LABEL],
83
});
84
+ } else if (command === "unstable_ack" || command.startsWith("unstable_ack ")) {
85
+ await octokit.rest.issues.addLabels({
86
+ owner,
87
+ repo,
88
+ issue_number: payload.issue.number,
89
+ labels: ["skip-url-stability-check"],
90
+ });
91
} else {
92
await octokit.rest.reactions.createForIssueComment({
93
owner,
0 commit comments