Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dancastillo/workflows
https://github.com/dancastillo/workflows
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/dancastillo/workflows
- Owner: dancastillo
- License: other
- Created: 2022-12-16T02:33:17.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-14T14:17:01.000Z (about 1 month ago)
- Last Synced: 2024-11-14T15:24:03.667Z (about 1 month ago)
- Size: 21.5 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
```