Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 954 Bytes

README.md

File metadata and controls

35 lines (26 loc) · 954 Bytes

.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

project in this orgnization use the reusable workflow files from the homebridge organization, example:

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 }}