الملفات
github-actions-demos/.github/workflows/03-reusable-workflow.yml
2022-06-27 10:57:19 -04:00

19 أسطر
331 B
YAML

name: Reusable workflow example
on:
workflow_call:
inputs:
username:
required: true
type: string
jobs:
example_job:
runs-on: ubuntu-latest
name: Pass input to my-action
steps:
- name: Run a one-line script
run: echo Hello from reuseable workflow, ${{ inputs.username }}