Skip to content

Commit 4395613

Browse files
committed
fix: add missing INSTALLATION_ID to example env files
INSTALLATION_ID is a required environment variable but was missing from the example env files. This caused deployment failures with the error: 'missing required environment variables: INSTALLATION_ID' Added INSTALLATION_ID back to: - configs/env.yaml.example - configs/env.yaml.production
1 parent 152f787 commit 4395613

File tree

4 files changed

+2
-263
lines changed

4 files changed

+2
-263
lines changed

examples-copier/configs/env.yaml.example

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ env_variables:
55

66
# GitHub App Configuration
77
GITHUB_APP_ID: "YOUR_GITHUB_APP_ID" # Your GitHub App ID (required)
8+
INSTALLATION_ID: "YOUR_INSTALLATION_ID" # GitHub App Installation ID (required)
89

910
# Config Repository (where copier-config.yaml is stored)
1011
CONFIG_REPO_OWNER: "your-org" # Config repository owner (required)

examples-copier/configs/env.yaml.production

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
# GitHub Configuration (Non-sensitive)
33
# =============================================================================
44
GITHUB_APP_ID: "1166559"
5+
INSTALLATION_ID: "YOUR_INSTALLATION_ID" # Replace with your GitHub App Installation ID
56

67
# Config Repository (where copier-config.yaml is stored)
78
CONFIG_REPO_OWNER: "mongodb"

examples-copier/example/config.yaml

Lines changed: 0 additions & 218 deletions
This file was deleted.

examples-copier/example/mflix-pr-strategy.yaml

Lines changed: 0 additions & 45 deletions
This file was deleted.

0 commit comments

Comments
 (0)