diff --git a/.github/workflows/ci-testing-deploy.yml b/.github/workflows/ci-testing-deploy.yml index 0e4bec13b91..63623a2c521 100644 --- a/.github/workflows/ci-testing-deploy.yml +++ b/.github/workflows/ci-testing-deploy.yml @@ -2744,7 +2744,7 @@ jobs: run: | uv venv .venv && source .venv/bin/activate make openapi-specs - ./ci/github/helpers/openapi-specs-backwards-compatibility.bash diff \ + ./ci/github/helpers/openapi-specs-diff.bash diff \ https://raw.githubusercontent.com/${{ github.event.pull_request.head.repo.full_name }}/refs/heads/${{ github.event.pull_request.head.ref }} \ . @@ -2793,6 +2793,6 @@ jobs: uses: actions/checkout@v4 - name: Check openapi-specs backwards compatibility run: | - ./ci/github/helpers/openapi-specs-backwards-compatibility.bash breaking \ + ./ci/github/helpers/openapi-specs-diff.bash breaking \ https://raw.githubusercontent.com/${{ github.event.pull_request.base.repo.full_name }}/refs/heads/${{ github.event.pull_request.base.ref }} \ . diff --git a/ci/github/helpers/openapi-specs-backwards-compatibility.bash b/ci/github/helpers/openapi-specs-diff.bash similarity index 88% rename from ci/github/helpers/openapi-specs-backwards-compatibility.bash rename to ci/github/helpers/openapi-specs-diff.bash index a0aa803616f..b4409c174a8 100755 --- a/ci/github/helpers/openapi-specs-backwards-compatibility.bash +++ b/ci/github/helpers/openapi-specs-diff.bash @@ -2,11 +2,11 @@ # Recursively checks if all openapi specs within a local osparc-simcore revision are different/backwards compatible with a remote base # Example: -# bash osparc-simcore/ci/github/helpers/openapi-specs-backwards-compatibility.bash diff \ +# bash osparc-simcore/ci/github/helpers/openapi-specs-diff.bash diff \ # https://raw.githubusercontent.com/ITISFoundation/osparc-simcore/refs/heads/master \ # ./osparc-simcore/ # or -# bash osparc-simcore/ci/github/helpers/openapi-specs-backwards-compatibility.bash breaking \ +# bash osparc-simcore/ci/github/helpers/openapi-specs-diff.bash breaking \ # https://raw.githubusercontent.com/ITISFoundation/osparc-simcore/refs/heads/master \ # ./osparc-simcore/ #