updated example workflows

هذا الالتزام موجود في:
Chris Ayers
2022-06-27 10:57:19 -04:00
الأصل c43086ce8b
التزام 2da40e1d82
5 ملفات معدلة مع 182 إضافات و0 حذوفات

عرض الملف

@@ -0,0 +1,18 @@
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 }}