diff --git a/.github/workflows/includes/lint.yaml b/.github/workflows/lint.yaml similarity index 100% rename from .github/workflows/includes/lint.yaml rename to .github/workflows/lint.yaml diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index 2ac2f39..6f21763 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -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' diff --git a/.github/workflows/includes/sync-images.yaml b/.github/workflows/sync-images.yaml similarity index 100% rename from .github/workflows/includes/sync-images.yaml rename to .github/workflows/sync-images.yaml diff --git a/.github/workflows/includes/test.yaml b/.github/workflows/test.yaml similarity index 100% rename from .github/workflows/includes/test.yaml rename to .github/workflows/test.yaml