# GitHub Secrets for Local Act Testing # Copy this file to .secrets and fill in your values # IMPORTANT: .secrets is git-ignored - never commit actual secrets! # GitHub Personal Access Token (for GitHub API access) # Create at: https://github.com/settings/tokens # Required scopes: repo, workflow, read:org GITHUB_TOKEN=ghp_your_personal_access_token_here # Database Configuration (for local testing) # Dev environments typically use SQLite DATABASE_URL=file:./dev.db # Node Environment NODE_ENV=test # Add any other secrets needed by your workflows here # Format: KEY=value