From bd01576deddd324b76be025fe9348048893224bd Mon Sep 17 00:00:00 2001 From: Jessica Wagantall Date: Wed, 3 Apr 2024 19:00:05 -0700 Subject: [PATCH] Fix: Call tox verify action and not workflow - We can't call workflows in steps Change-Id: I309ca2bf14f56f2078ccab3bb82c7a8122d23372 Signed-off-by: Jessica Wagantall --- .github/workflows/gerrit-novote-merge.yaml | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/.github/workflows/gerrit-novote-merge.yaml b/.github/workflows/gerrit-novote-merge.yaml index 5bd6982..6440797 100644 --- a/.github/workflows/gerrit-novote-merge.yaml +++ b/.github/workflows/gerrit-novote-merge.yaml @@ -76,18 +76,9 @@ jobs: steps: - name: Run Tox verify # yamllint disable-line rule:line-length - uses: lfit/releng-reusable-workflows/.github/workflows/gerrit-compose-required-tox-verify.yaml@main + uses: lfit/releng-reusable-workflows/.github/actions/maven-build-action@main with: - GERRIT_BRANCH: ${{ inputs.GERRIT_BRANCH }} - GERRIT_CHANGE_ID: ${{ inputs.GERRIT_CHANGE_ID }} - GERRIT_CHANGE_NUMBER: ${{ inputs.GERRIT_CHANGE_NUMBER }} - GERRIT_CHANGE_URL: ${{ inputs.GERRIT_CHANGE_URL }} - GERRIT_EVENT_TYPE: ${{ inputs.GERRIT_EVENT_TYPE }} - GERRIT_PATCHSET_NUMBER: ${{ inputs.GERRIT_PATCHSET_NUMBER }} - GERRIT_PATCHSET_REVISION: ${{ inputs.GERRIT_PATCHSET_REVISION }} - GERRIT_PROJECT: ${{ inputs.GERRIT_PROJECT }} - GERRIT_REFSPEC: ${{ inputs.GERRIT_REFSPEC }} - TOX_ENVS: '["py3"]' + tox-envs: '["py3"]' - name: Run SonarCloud Scan uses: sonarsource/sonarcloud-github-action@master env: -- 2.16.6