Skip to content

Commit

Permalink
Merge pull request #1 from davidcui-amzn/action_branch
Browse files Browse the repository at this point in the history
Action branch
  • Loading branch information
davidcui1225 authored Dec 23, 2019
2 parents bbfb5b9 + 5e74f55 commit 92488b5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
# To use this repository's private action, you must check out the repository
- name: Checkout
uses: actions/checkout@v1
- name: Hello world action step
- name: PoC action Tutorial Step
uses: ./ # Uses an action in the root directory
id: hello
with:
Expand Down
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name: 'Hello World'
description: 'Greet someone and record the time'
name: 'PoC GitHub Action test'
description: 'An initial test GitHub action for simple proof of concept'
inputs:
who-to-greet: # id of input
description: 'Who to greet'
required: true
default: 'World'
outputs:
time: # id of output
description: 'The time we greeted you'
description: 'An initial test GitHub action for simple proof of concept- output description'
runs:
using: 'node12'
main: 'index.js'

0 comments on commit 92488b5

Please sign in to comment.