File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
actions/label-actions/dist Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -10268,12 +10268,12 @@ async function main() {
1026810268 // Check if the PR author is a member of the Ghost Foundation team
1026910269 const isGhostMember = await helpers.isGhostFoundationMember(author, pullRequest.author_association);
1027010270
10271- // Add appropriate label based on membership
10272- if (isGhostMember) {
10273- await helpers.addLabel(pullRequest, 'core team');
10274- } else {
10275- await helpers.addLabel(pullRequest, 'community');
10276- }
10271+ // Don't label until we get the correct org membership data
10272+ // if (isGhostMember) {
10273+ // await helpers.addLabel(pullRequest, 'core team');
10274+ // } else {
10275+ // await helpers.addLabel(pullRequest, 'community');
10276+ // }
1027710277
1027810278 core.info(`Labeled PR #${pullRequest.number} by ${author} as ${isGhostMember ? 'core team' : 'community'}`);
1027910279 }
You can’t perform that action at this time.
0 commit comments