Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
name: A workflow for my Hello World file
on: push
5 changes: 5 additions & 0 deletions action-a/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
FROM debian:9.5-slim

ADD entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]
17 changes: 17 additions & 0 deletions action-a/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: "Hello Actions"
description: "Greet someone"
author: "octocat@github.com"

inputs:
MY_NAME:
description: "Who to greet"
required: true
default: "World"

runs:
using: "docker"
image: "Dockerfile"

branding:
icon: "mic"
color: "purple"
3 changes: 3 additions & 0 deletions action-a/entrypoint.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/sh -l

sh -c "echo Hello world my name is $INPUT_MY_NAME"