alpha
Login
or
Join now
shuuji3.xyz
/
hello-github-actions
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
[READ-ONLY] Mirror of https://github.com/shuuji3/hello-github-actions.
lab.github.com/githubtraining/github-actions:-hello-world
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
Create action.yml
author
TAKAHASHI Shuuji
committer
GitHub
date
4 years ago
(Nov 7, 2021, 3:59 PM +0900)
commit
50d3f908
50d3f908436d4fbbfe7519f82f5474e1f35bc64c
parent
f65df3f1
f65df3f14db96f19a61bf560d10ecb52693225f7
+18
1 changed file
Expand all
Collapse all
Unified
Split
action-a
action.yml
+18
action-a/action.yml
View file
Reviewed
···
1
1
+
---
2
2
+
name: "Hello Actions"
3
3
+
description: "Greet someone"
4
4
+
author: "octocat@github.com"
5
5
+
6
6
+
inputs:
7
7
+
MY_NAME:
8
8
+
description: "Who to greet"
9
9
+
required: true
10
10
+
default: "World"
11
11
+
12
12
+
runs:
13
13
+
using: "docker"
14
14
+
image: "Dockerfile"
15
15
+
16
16
+
branding:
17
17
+
icon: "mic"
18
18
+
color: "purple"