github.com/nektos/act@v0.2.83/pkg/runner/testdata/docker-action-host-env/action/action.yml (about) 1 name: "Hello World Docker Action" 2 description: "A simple Docker action that prints Hello, World! and environment variables." 3 inputs: 4 who-to-greet: 5 description: "Who to greet" 6 required: false 7 default: "World" 8 runs: 9 using: "docker" 10 image: "Dockerfile" 11 args: 12 - ${{ inputs.who-to-greet }}