https://github.com/knative/actions
https://github.com/knative/actions
Last synced: 5 months 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 4 years ago)
- Default Branch: main
- Last Pushed: 2025-11-26T01:37:46.000Z (7 months ago)
- Last Synced: 2025-11-28T07:09:54.587Z (7 months ago)
- Size: 265 KB
- Stars: 12
- Watchers: 8
- Forks: 24
- Open Issues: 11
-
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)