An open API service indexing awesome lists of open source software.

https://github.com/homebridge-plugins/.github


https://github.com/homebridge-plugins/.github

Last synced: 4 months ago
JSON representation

Awesome Lists containing this project

README

          




# `.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](https://github.com/homebridge/.github/tree/latest/.github/workflows) from the homebridge organization, example:

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