Go to file
Knative Prow Robot 0fe5c437ea
[release-1.8] 🐛 Use regular build command instead of codeql/autobuild (#96)
* Use regular build command instead of codeql/autobuild

* Try using go build

* Explain the go build for CodeQL

---------

Co-authored-by: Chris Suszynski <krzysztof.suszynski@gmail.com>
2023-01-30 18:38:28 +00:00
.github/workflows
composite/style
go/downstream-test
sync
.gitignore
CODE-OF-CONDUCT.md
LICENSE
OWNERS
OWNERS_ALIASES
README.md

README.md

Knative GitHub Actions and Workflows

These actions and workflows are used within the Knative project

The repo is organized as follows:

  • Reusable workflows are under the workflows directory

    They can be used as follows:

    on: [pull_request]
    
    jobs:
      job_name:
        steps:
        - uses: knative/actions/workflows/reusable-workflow.yml@main  
    
  • Composite actions have their own unique folder the root of the repo

    They can be used as follows:

    on: [pull_request]
    
    jobs:
      job_name:
        steps:
        - uses: knative/actions/some-action@main