Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@

// Import modules
// comment for PR (again)
const fs = require('fs');
const retrieveLabelDirectory = require('../../utils/retrieve-label-directory');
const checkComplexityEligibility = require('./check-complexity-eligibility');
Expand Down Expand Up @@ -66,7 +67,8 @@ async function main({ g, c }, { shouldPost, issueNum }) {
assignee = await getLatestAssignee();

// Check if developer is allowed to work on this issue
const isAdminOrMerge = await memberOfAdminOrMergeTeam();
// const isAdminOrMerge = await memberOfAdminOrMergeTeam();
const isAdminOrMerge = false; // TESTING 8634-5
const isAssignedToAnotherIssue = await assignedToAnotherIssue();

// Check if developer is allowed to work on complexity level of the issue
Expand Down
Loading