Skip to content

Commit f673934

Browse files
committed
feat: ✨ Add org to allowlist
1 parent a5d6702 commit f673934

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/plans.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ export async function hasValidSubscription(app: Probot, ctx: Context<any>, confi
2525
return true;
2626
} else {
2727
await buyDeveloperPlanComment(ctx, config);
28+
app.log.info('Added comment to buy Developer 🙏 plan');
2829
return false;
2930
}
3031
}
@@ -99,7 +100,8 @@ export function isFreePaidSubscription(app: Probot, ctx: Context<any>): boolean
99100
const login = getRepoOwnerLogin(ctx)
100101
const logins = ['PWrInSpace', 'KPLRCDBS', 'codemeistre', 'RaspberryPiFoundation', 'astro-pi',
101102
'LOG680-01-Equipe-09', 'New-AutoMotive', 'EpitechMscPro2020', 'snaphu-msu', 'SerenKodi', 'oyunprotocol',
102-
'web-illinois', 'PathologyDataScience', 'miranhas-github', 'DHBW-FN', 'lecoindesdevs', 'getcodelimit'];
103+
'web-illinois', 'PathologyDataScience', 'miranhas-github', 'DHBW-FN', 'lecoindesdevs', 'getcodelimit',
104+
'facio-ergo-sum'];
103105
const match = logins.find(o => o.toLowerCase() === login.toLowerCase());
104106
if (match !== undefined) {
105107
app.log.info('Found free ❤️ paid plan');

0 commit comments

Comments
 (0)