Reusable GitHub Workflows

144

less than a minute read

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.

-- Yu Long
Published on Mar 17, 2024, PDT
Updated on Mar 17, 2024, PDT