Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 (about 3 years ago)
- Default Branch: latest
- Last Pushed: 2024-10-29T14:16:45.000Z (2 months ago)
- Last Synced: 2024-10-29T17:17:24.843Z (2 months ago)
- Topics: github-actions, issue-templates, pr-templates, workflow
- Homepage:
- Size: 87.9 KB
- Stars: 8
- Watchers: 8
- Forks: 10
- Open Issues: 1
-
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 }}
```