Skip to content

Commit 207fd4c

Browse files
committed
Added missing built files
- derp - forgot to commit the built file
1 parent b9df1e4 commit 207fd4c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

actions/label-actions/dist/index.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)