This commit is contained in:
Harsh Shandilya 2023-01-12 13:47:29 +05:30
parent 31be0cb38c
commit 1b241b3aa3
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ module.exports = async ({github, context}) => {
pull_number: context.payload.number,
});
const shouldWarn = pr.base.ref == "main" && pr.head.ref != "staging"
const shouldWarn = pr.head.ref != "staging" // && pr.base.ref == "main"
if (shouldWarn) {
octokit.rest.issues.createComment({