https://github.com/dancastillo/workflows
https://github.com/dancastillo/workflows
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dancastillo/workflows
- Owner: dancastillo
- License: other
- Created: 2022-12-16T02:33:17.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-22T01:48:25.000Z (5 months ago)
- Last Synced: 2025-01-20T17:50:44.837Z (4 months ago)
- Size: 35.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Workflows
Reusable workflows for use.
## Intro
GitHub [introduced reusable workflows](https://github.blog/2021-11-29-github-actions-reusable-workflows-is-generally-available/) on 2021-11-29 which, as the name suggests, are workflows that can be referenced across the entirety of GitHub.
For more information, including limitations, [see the GitHub Docs](https://docs.github.com/en/actions/learn-github-actions/reusing-workflows).
## Usage
A reusable workflow is called by using the `uses` keyword in another workflow:
```yml
name: CIon:
push:
paths-ignore:
- 'docs/**'
- '*.md'
pull_request:
paths-ignore:
- 'docs/**'
- '*.md'jobs:
call-reuseable-workflow:
uses: dancastillo/workflows/.github/workflows/github-actions.yml
```