[READ-ONLY] Mirror of https://github.com/shuuji3/hello-github-actions. lab.github.com/githubtraining/github-actions:-hello-world
0

Configure Feed

Select the types of activity you want to include in your feed.

Create action.yml

+18
+18
action-a/action.yml
··· 1 + --- 2 + name: "Hello Actions" 3 + description: "Greet someone" 4 + author: "octocat@github.com" 5 + 6 + inputs: 7 + MY_NAME: 8 + description: "Who to greet" 9 + required: true 10 + default: "World" 11 + 12 + runs: 13 + using: "docker" 14 + image: "Dockerfile" 15 + 16 + branding: 17 + icon: "mic" 18 + color: "purple"