Skip to content

Latest commit

 

History

History
38 lines (28 loc) · 1.04 KB

README.md

File metadata and controls

38 lines (28 loc) · 1.04 KB

.github

This project contains any sort of common and community health files for the Homebridge organization to be maintained in a central space.

Reusable GitHub Workflows

This project provides several GitHub workflows that can be reused.

This example, which is cited from the above-linked GitHub documentation page, shows how such reusable workflow files are generally used:

name: Call a reusable workflow

on:
  pull_request:
    branches:
      - latest

jobs:
  call-workflow:
    uses: homebridge/.github/.github/workflows/example-workflow.yml@latest

  call-workflow-passing-data:
    uses: homebridge/.github/.github/workflows/example-workflow.yml@latest
    with:
      username: mona
    secrets:
      token: ${{ secrets.TOKEN }}