Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/donavanbecker/.github
https://github.com/donavanbecker/.github
Last synced: 17 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/donavanbecker/.github
- Owner: donavanbecker
- Created: 2022-09-23T16:23:06.000Z (over 2 years ago)
- Default Branch: latest
- Last Pushed: 2024-10-03T02:30:30.000Z (3 months ago)
- Last Synced: 2024-10-30T08:46:20.751Z (2 months ago)
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# The global `.github` for all of my projects
This projects contains any sort of common and community health files for my projects 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:
- mainjobs:
call-workflow:
uses: donavanbecker/.github/.github/workflows/example-workflow.yml@maincall-workflow-passing-data:
uses: donavanbecker/.github/.github/workflows/example-workflow.yml@main
with:
username: mona
secrets:
token: ${{ secrets.TOKEN }}
```