mirror of
https://github.com/headroomlabs-ai/headroom.git
synced 2026-08-27 14:17:10 -04:00
- 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
14 lines
382 B
Text
14 lines
382 B
Text
# Default flags for act runs in this repo.
|
|
# See https://github.com/nektos/act#configuration for all options.
|
|
|
|
# Use Ubuntu runner image for all jobs
|
|
--platform=ubuntu-latest=ghcr.io/catthehacker/ubuntu:runner-latest
|
|
|
|
# Reuse containers so subsequent runs are faster
|
|
--reuse
|
|
|
|
# Pull the image in the background if not present
|
|
--pull=true
|
|
|
|
# Quiet mode (less verbose output)
|
|
--quiet
|