You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
await createOrUpdateChangelogComment("Please remove either the 'no-changelog-needed' label or the changelog entry from this PR.");
103
+
return;
104
+
}
105
+
await createOrUpdateChangelogComment("", true);
106
+
return;
107
+
}
108
+
109
+
if (!changelogChangesPresent) {
110
+
await createOrUpdateChangelogComment("Please add a changelog entry to `CHANGELOG.md` for this change. If you believe this change does not need a changelog entry, please add the 'no-changelog-needed' label.");
111
+
return;
112
+
}
113
+
114
+
// Nothing to complain about, so delete any existing comment
0 commit comments