We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91fdcf9 commit 56a9510Copy full SHA for 56a9510
scripts/verify-github-oauth.js
@@ -206,7 +206,11 @@ async function verifyConfiguration() {
206
const org = process.env.GITHUB_ORG;
207
info(`Organization configured: ${org}`);
208
info(`In production, only members of ${org} can sign in`);
209
- info('(plus hardcoded admin: jeromehardaway)');
+ if (process.env.GITHUB_ADMIN) {
210
+ info(`(plus configured admin: ${process.env.GITHUB_ADMIN})`);
211
+ } else {
212
+ warning('No GITHUB_ADMIN environment variable set; no admin override configured.');
213
+ }
214
215
console.log('');
216
}
0 commit comments