From 68cd819f4ae1f090c41a0d21ce000f59704d7a0e Mon Sep 17 00:00:00 2001 From: Harris Tzovanakis Date: Thu, 25 Jul 2024 15:35:57 +0200 Subject: [PATCH] gh-actions: fix workflows --- .../integration-tests.yml => backoffice-integration-tests.yml} | 0 .github/workflows/pull-request-main-backoffice.yml | 2 +- .github/workflows/pull-request-main-workflows.yml | 2 +- .github/workflows/push-main-backoffice.yml | 2 +- .github/workflows/push-main-workflows.yml | 2 +- .github/workflows/{backoffice/test.yml => test-backoffice.yml} | 2 +- .github/workflows/{workflows/test.yml => test-workflows.yml} | 0 7 files changed, 5 insertions(+), 5 deletions(-) rename .github/workflows/{backoffice/integration-tests.yml => backoffice-integration-tests.yml} (100%) rename .github/workflows/{backoffice/test.yml => test-backoffice.yml} (91%) rename .github/workflows/{workflows/test.yml => test-workflows.yml} (100%) diff --git a/.github/workflows/backoffice/integration-tests.yml b/.github/workflows/backoffice-integration-tests.yml similarity index 100% rename from .github/workflows/backoffice/integration-tests.yml rename to .github/workflows/backoffice-integration-tests.yml diff --git a/.github/workflows/pull-request-main-backoffice.yml b/.github/workflows/pull-request-main-backoffice.yml index 4a4fd8d8..00806b25 100644 --- a/.github/workflows/pull-request-main-backoffice.yml +++ b/.github/workflows/pull-request-main-backoffice.yml @@ -12,7 +12,7 @@ jobs: with: ref: ${{ github.ref }} test: - uses: ./.github/workflows/backoffice/test.yml + uses: ./.github/workflows//test-backoffice.yml with: ref: ${{ github.event.pull_request.head.sha }} secrets: inherit diff --git a/.github/workflows/pull-request-main-workflows.yml b/.github/workflows/pull-request-main-workflows.yml index 4c31cd1f..12c29e8d 100644 --- a/.github/workflows/pull-request-main-workflows.yml +++ b/.github/workflows/pull-request-main-workflows.yml @@ -11,7 +11,7 @@ jobs: with: ref: ${{ github.ref }} test: - uses: ./.github/workflows/workflows/test.yml + uses: ./.github/workflows/test-workflows.yml with: ref: ${{ github.event.pull_request.head.sha }} secrets: inherit diff --git a/.github/workflows/push-main-backoffice.yml b/.github/workflows/push-main-backoffice.yml index 6ef067bd..7a427315 100644 --- a/.github/workflows/push-main-backoffice.yml +++ b/.github/workflows/push-main-backoffice.yml @@ -17,7 +17,7 @@ jobs: ref: ${{ github.ref }} test: needs: lint - uses: ./.github/workflows/backoffice/test.yml + uses: ./.github/workflows/test-backoffice.yml with: ref: ${{ github.ref }} secrets: inherit diff --git a/.github/workflows/push-main-workflows.yml b/.github/workflows/push-main-workflows.yml index 9f1e7ba8..50a39e85 100644 --- a/.github/workflows/push-main-workflows.yml +++ b/.github/workflows/push-main-workflows.yml @@ -16,7 +16,7 @@ jobs: with: ref: ${{ github.ref }} test: - uses: ./.github/workflows/workflows/test.yml + uses: ./.github/workflows/test-workflows.yml with: ref: ${{ github.ref }} secrets: inherit diff --git a/.github/workflows/backoffice/test.yml b/.github/workflows/test-backoffice.yml similarity index 91% rename from .github/workflows/backoffice/test.yml rename to .github/workflows/test-backoffice.yml index 891b3f4d..b1050536 100644 --- a/.github/workflows/backoffice/test.yml +++ b/.github/workflows/test-backoffice.yml @@ -26,7 +26,7 @@ jobs: needs: build strategy: fail-fast: false - uses: ./.github/workflows/backoffice/integration-tests.yml + uses: ./.github/workflows/backoffice-integration-tests.yml with: ref: ${{ inputs.ref }} image: "registry.cern.ch/cern-sis/inspire/backoffice@${{ needs.build.outputs.image-id }}" diff --git a/.github/workflows/workflows/test.yml b/.github/workflows/test-workflows.yml similarity index 100% rename from .github/workflows/workflows/test.yml rename to .github/workflows/test-workflows.yml