Skip to content

.github/workflows/custom-action.yml #3

.github/workflows/custom-action.yml

.github/workflows/custom-action.yml #3

Workflow file for this run

on:
workflow_dispatch:
jobs:
my-job:
runs-on: ubuntu-latest
name: A job to say hello
steps:
- name: Hello world action step
id: hello
uses: omenking/[email protected]
with:
name: 'Brown'
# Use the output from the `hello` step
- name: Get the Output
run: echo "The time was ${{ steps.hello.outputs.greeting }}"