GOOGLE_BENEFITS.md#64217
Closed
EHESPO wants to merge 1 commit into
Closed
Conversation
git add . git commit -m "Add Google Cloud Startup benefits, domains & emails" git push origin main
This comment was marked as spam.
This comment was marked as spam.
This comment was marked as spam.
This comment was marked as spam.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
const fs = require('fs');
const path = require('path');
// ============================================================
// 1. GOOGLE_BENEFITS.md
// ============================================================
const benefitsMD = `# Google Cloud Startup Benefits β EHEPSO
Received: June 26, 2026
From: Google Cloud Startup Support
Status: Scale Tier Member (Google for Startups Cloud Program)
π Exclusive Benefits
π Domains
π§ Contact Emails
π·οΈ Tags
`#GoogleCloud` `#GoogleForStartups` `#ScaleTier` `#EHEPSO` `#Nonprofit` `#AI` `#Education` `#ClimateAction`
// ============================================================
// 2. scripts/setup_creds.sh
// ============================================================
const setupCredsSH = `#!/bin/bash
Google Cloud Startup - EHEPSO Credentials & Metadata
Source this file: source scripts/setup_creds.sh
export DOMAINS="eheps.org eheps.com"
export PRIMARY_EMAIL="ewaz.2010@gmail.com"
export EXECUTIVE_DIRECTOR_EMAIL="executivedirector@eheps.org"
export EXECUTIVE_ALT_EMAIL="Executive@eheps.com"
export ADMIN_EMAIL="admin@eheps.com"
export CONTACT_EMAILS="$PRIMARY_EMAIL $EXECUTIVE_DIRECTOR_EMAIL $EXECUTIVE_ALT_EMAIL $ADMIN_EMAIL"
echo "β EHEPSO Google Cloud environment variables loaded."
echo "π Domains: $DOMAINS"
echo "π§ Emails: $CONTACT_EMAILS"
`;
// ============================================================
// 3. .github/workflows/tag-google.yml
// ============================================================
const tagGoogleYML = `name: Tag Google
on:
push:
branches: [ main ]
jobs:
tag:
runs-on: ubuntu-latest
steps:
- name: Display Google Startup Info
run: |
echo "::notice:: Google Cloud Startup Partner - EHEPSO"
echo "::notice:: Domains: eheps.org, eheps.com"
echo "::notice:: Contact: executivedirector@eheps.org"
echo "::notice:: #GoogleCloud #GoogleForStartups #ScaleTier"
`;
// ============================================================
// Write files to disk
// ============================================================
const files = [
{ path: 'GOOGLE_BENEFITS.md', content: benefitsMD },
{ path: 'scripts/setup_creds.sh', content: setupCredsSH },
{ path: '.github/workflows/tag-google.yml', content: tagGoogleYML },
];
files.forEach((file) => {
const dir = path.dirname(file.path);
if (!fs.existsSync(dir)) {
fs.mkdirSync(dir, { recursive: true });
console.log(
π Created directory: ${dir});}
fs.writeFileSync(file.path, file.content, 'utf8');
console.log(
β Created: ${file.path});});
console.log('\nπ All files generated successfully!');
console.log('β Commit and push to GitHub:');
console.log(' git add .');
console.log(' git commit -m "Add Google Cloud Startup benefits, domains & emails"');
console.log(' git push origin main');