From 2f955f45bdb9f3d733da6607ef5959d58344352d Mon Sep 17 00:00:00 2001 From: AmandaYu123 Date: Wed, 1 Oct 2025 12:48:01 -0400 Subject: [PATCH] Create action.yml --- hello-world-docker-action/action.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 hello-world-docker-action/action.yml diff --git a/hello-world-docker-action/action.yml b/hello-world-docker-action/action.yml new file mode 100644 index 0000000..6eabc6e --- /dev/null +++ b/hello-world-docker-action/action.yml @@ -0,0 +1,15 @@ +name: 'Hello World Docker Action' +description: 'Say hello to a user or the world.' +inputs: + who-to-greet: + description: 'Who to greet' + required: true + default: 'world' +outputs: + time: + description: 'The time we said hello.' +runs: + using: 'docker' + image: 'Dockerfile' + args: + - ${{ inputs.who-to-greet }}