Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/knative/actions
https://github.com/knative/actions
Last synced: 6 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/knative/actions
- Owner: knative
- License: apache-2.0
- Created: 2022-03-10T18:05:58.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-21T18:31:22.000Z (6 months ago)
- Last Synced: 2024-05-22T16:33:37.100Z (6 months ago)
- Size: 190 KB
- Stars: 11
- Watchers: 8
- Forks: 23
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE-OF-CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
## Knative GitHub Actions and Workflows
These actions and workflows are used within the Knative project
The repo is organized as follows:
- [Reusable workflows](https://docs.github.com/en/actions/using-workflows/reusing-workflows) are under the `workflows` directory
They can be used as follows:
```yaml
on: [pull_request]jobs:
job_name:
steps:
- uses: knative/actions/workflows/reusable-workflow.yml@main
```- [Composite actions](https://docs.github.com/en/actions/creating-actions/creating-a-composite-action) have their own unique folder the root of the repo
They can be used as follows:
```yaml
on: [pull_request]jobs:
job_name:
steps:
- uses: knative/actions/some-action@main
```## Contributing to Knative
For a list of all help wanted issues in Knative, look [here](https://clotributor.dev/search?project=knative&page=1)