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
console.log(`Found the '${targetLabel}' label. Adding comment...`);
const bodyMsg = "Thanks for submitting this issue! Please note that, the Android Studio plugin source code is maintained in [AOSP](https://android.googlesource.com/platform/tools/adt/idea/+/refs/heads/mirror-goog-studio-main/aswb) and user issues should be reported to Android Public Tracker > App Development > Android Studio component.";
await github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: bodyMsg
});
console.log('Comment added successfully.');
} else {
console.log(`The '${targetLabel}' label was not found. No comment added.`);