Move workflows back to top level

This commit is contained in:
Matt Pryor 2023-01-18 18:20:50 +00:00
parent 06f7bb8d0e
commit d776e15006
4 changed files with 3 additions and 3 deletions

View File

@ -7,17 +7,17 @@ on:
jobs:
# Run the lint on every PR, even from external repos
lint:
uses: ./.github/workflows/includes/lint.yaml
uses: ./.github/workflows/lint.yaml
# Only run image sync and test on the main repo
sync_images:
needs: [lint]
uses: ./.github/workflows/includes/sync-images.yaml
uses: ./.github/workflows/sync-images.yaml
secrets: inherit
if: github.repository == 'stackhpc/capi-helm-charts'
test:
needs: [sync_images]
uses: ./.github/workflows/includes/test.yaml
uses: ./.github/workflows/test.yaml
secrets: inherit
if: github.repository == 'stackhpc/capi-helm-charts'