https://github.com/openwonderlabs/.github
https://github.com/openwonderlabs/.github
actions github github-actions workflow workflows
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/openwonderlabs/.github
- Owner: OpenWonderLabs
- Created: 2021-11-16T03:00:56.000Z (over 4 years ago)
- Default Branch: latest
- Last Pushed: 2025-09-18T03:22:50.000Z (9 months ago)
- Last Synced: 2025-09-18T05:35:19.490Z (9 months ago)
- Topics: actions, github, github-actions, workflow, workflows
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# The global `.github` for all OpenWonderLabs projects
This projects contains any sort of common and community health files for the OpenWonderLabs 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 workflow
on:
pull_request:
branches:
- main
jobs:
call-workflow:
uses: OpenWonderLabs/.github/.github/workflows/example-workflow.yml@main
call-workflow-passing-data:
uses: OpenWonderLabs/.github/.github/workflows/example-workflow.yml@main
with:
username: mona
secrets:
token: ${{ secrets.TOKEN }}
```