Reusable GitHub Workflows

144

小于一分钟

I want to reuse a workflow run from another repository. Turns out it is quite easy to do so. Here is an example.

In Target Repo:

name: Reusable Workflow
on:
  workflow_call:
    inputs:
      name:
        required: true
        type: string

jobs:
  example_job:
    runs-on: ubuntu-latest
    steps:
      - run: echo "Hello, ${{ inputs.name }}!"

In Source Repo:

name: Call Remote Workflow
on: [push]

jobs:
  call-workflow:
    uses: TARGET_REPOSITORY_OWNER/TARGET_REPOSITORY/.github/workflows/REUSABLE_WORKFLOW_FILE.yml@main
    with:
      name: 'Your Name'

Simple as that. However, there are a few gotchas.

-- 龙雨
发布于2024年3月18日 GMT+8
更新于2024年3月18日 GMT+8