Skip to content

Reuse other workflow #4

Reuse other workflow

Reuse other workflow #4

Workflow file for this run

name: Reuse other workflow
on: [workflow_dispatch]
jobs:
call-workflow:
uses: ./.github/workflows/reusable.yml
with:
who-to-greet: '@mjpraxis'
use-output:
runs-on: ubuntu-latest
needs: [call-workflow]
steps:
- run: echo "Time was ${{ needs.call-workflow.outputs.current-time }}"