diff --git a/.github/workflows/ci-build-image.yml b/.github/workflows/ci-build-image.yml index 920d0632a1..db57103d3d 100644 --- a/.github/workflows/ci-build-image.yml +++ b/.github/workflows/ci-build-image.yml @@ -10,10 +10,6 @@ on: build-arch: required: true type: string - skip-itests: - required: false - type: boolean - default: false run-tests-only: required: false type: boolean diff --git a/.github/workflows/integrated-test.yml b/.github/workflows/integrated-test.yml index f392adffea..79d4e49723 100644 --- a/.github/workflows/integrated-test.yml +++ b/.github/workflows/integrated-test.yml @@ -13,11 +13,15 @@ on: required: true type: string pr-number: - required: false - type: string + required: false + type: string sha-value: - required: false - type: string + required: false + type: string + skip-itests: + required: false + type: boolean + default: false permissions: contents: read @@ -25,8 +29,9 @@ permissions: jobs: - integration-tests: #testing + integration-tests: #test runs-on: ubuntu-latest + if: ${{ !inputs.skip-itests }} steps: - name: Install xpath run: | diff --git a/.github/workflows/pr-ci.yml b/.github/workflows/pr-ci.yml index 92df5d707e..8afa2c5a1b 100644 --- a/.github/workflows/pr-ci.yml +++ b/.github/workflows/pr-ci.yml @@ -208,7 +208,7 @@ jobs: with: script: | const runURL = `https://github.com/${context.repo.owner}/${context.repo.repo}/actions/runs/${{ github.run_id }}`; - const commentBody = `build-and-test: All tests pass ✅. \n[View Actions Run](${runURL}).`; + const commentBody = both build and itest completed successfully ✅. \n[View Actions Run](${runURL}).`; github.rest.issues.createComment({ issue_number: context.issue.number, owner: context.repo.owner,