https://github.com/homebridge/.github
Global workflow files and community health files for the Homebridge organization.
https://github.com/homebridge/.github
github-actions issue-templates pr-templates workflow
Last synced: about 2 months ago
JSON representation
Global workflow files and community health files for the Homebridge organization.
- Host: GitHub
- URL: https://github.com/homebridge/.github
- Owner: homebridge
- Created: 2021-11-06T16:28:35.000Z (over 3 years ago)
- Default Branch: latest
- Last Pushed: 2025-01-27T13:21:42.000Z (5 months ago)
- Last Synced: 2025-05-13T00:11:41.281Z (about 2 months ago)
- Topics: github-actions, issue-templates, pr-templates, workflow
- Homepage:
- Size: 102 KB
- Stars: 9
- Watchers: 8
- Forks: 11
- 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
This project provides several GitHub workflows that can be [reused](https://docs.github.com/en/actions/learn-github-actions/reusing-workflows).
This example, which is cited from the above-linked GitHub documentation page, shows how such
reusable workflow files are generally used:```yaml
name: Call a reusable workflowon:
pull_request:
branches:
- latestjobs:
call-workflow:
uses: homebridge/.github/.github/workflows/example-workflow.yml@latestcall-workflow-passing-data:
uses: homebridge/.github/.github/workflows/example-workflow.yml@latest
with:
username: mona
secrets:
token: ${{ secrets.TOKEN }}
```