https://github.com/homebridge-plugins/.github
https://github.com/homebridge-plugins/.github
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/homebridge-plugins/.github
- Owner: homebridge-plugins
- Created: 2023-12-09T02:54:56.000Z (over 2 years ago)
- Default Branch: latest
- Last Pushed: 2024-10-30T02:44:55.000Z (over 1 year ago)
- Last Synced: 2025-07-30T20:33:47.721Z (11 months ago)
- Size: 27.3 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Security: SECURITY.md
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 }}
```
