- Add .actrc file to map custom runner labels to Docker images - Add test-workflow.sh script for easy local testing with act - Maps php-ci runner to php-ci:latest Docker image - Maps docker-build runner to docker:latest - Helps resolve 'ansible: command not found' errors when testing workflows locally
7 lines
218 B
Plaintext
7 lines
218 B
Plaintext
# Act Configuration for local GitHub Actions testing
|
|
# Maps runner labels to Docker images
|
|
# Format: -P label=image (one per line, or use test-workflow.sh script)
|
|
|
|
-P php-ci=php-ci:latest
|
|
-P docker-build=docker:latest
|