Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 726 Bytes

README.md

File metadata and controls

28 lines (21 loc) · 726 Bytes

KubeFin GitHub Workflows

These workflows are used within the KubeFin project

  • Reusable workflows are under the workflows directory

    They can be used as follows:

    on: [pull_request]
    
    jobs:
      job_name:
        steps:
        - uses: kubefin/actions/.github/workflows/xxx.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:
        # ensure this is under steps
        - uses: kubefin/actions/composite/setup-ko@main