mirror of
https://github.com/actions/hello-world-javascript-action.git
synced 2025-04-05 05:59:40 +00:00
Convert to use src and dist paths
This commit is contained in:
25
.github/workflows/example-workflow.yml
vendored
Normal file
25
.github/workflows/example-workflow.yml
vendored
Normal file
@ -0,0 +1,25 @@
|
||||
name: Example Workflow
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
who-to-greet:
|
||||
description: Who to greet in the log
|
||||
required: true
|
||||
default: 'World'
|
||||
type: string
|
||||
|
||||
jobs:
|
||||
say-hello:
|
||||
name: Say Hello
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
# Change @main to a specific commit SHA or version tag, e.g.:
|
||||
# actions/hello-world-javascript-action@e76147da8e5c81eaf017dede5645551d4b94427b
|
||||
# actions/hello-world-javascript-action@v1.2.3
|
||||
- name: Print to Log
|
||||
id: print-to-log
|
||||
uses: actions/hello-world-javascript-action@main
|
||||
with:
|
||||
who-to-greet: ${{ inputs.who-to-greet }}
|
Reference in New Issue
Block a user