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