headroom/.actrc.local.example
JerrettDavis 910796ded2 feat: add act testing config, fix gitignore, make workflow production-ready
- Add .actrc with act defaults (Ubuntu runner, reuse, quiet)
- Add .github/act/dry-run.json and push-feat.json for local workflow testing
- Add .actrc.local.example for local overrides (gitignored)
- Add .env.act.example documenting required secrets
- Fix .gitignore: .env.act excluded, .env.act.example allowed
- Replace all bash git commands with Python subprocess (act compatibility)
- Add pip install build wheel for python -m build step
- Use absolute paths for artifact uploads (github.workspace)
- All publish jobs: dry_run + *_SKIP vars as safety gates
2026-04-15 20:28:29 -05:00

15 lines
538 B
Text

# Example local act configuration.
# Copy this file to .actrc.local and edit for your local environment.
#
# cp .actrc.local.example .actrc.local
#
# .actrc.local is NOT committed — it overrides .actrc for your machine only.
# Use a specific runner image (uncomment if you have issues with the default)
# --platform=ubuntu-latest=ghcr.io/catthehacker/ubuntu:runner-latest
# Or use act with a specific container runtime
# --container-args="--runtime=runc"
# Extra verbose output for debugging (uncomment to see all steps)
# --verbose