diff --git a/.github/workflows/publish-test-images.yaml b/.github/workflows/publish-test-images.yaml index cfe7b3eb94..d748d1d7c9 100644 --- a/.github/workflows/publish-test-images.yaml +++ b/.github/workflows/publish-test-images.yaml @@ -64,11 +64,13 @@ jobs: sed -i "s#^LATEST_IMAGE_TAG=.*#LATEST_IMAGE_TAG=${{ steps.extracter.outputs.version }}-${{ steps.extracter.outputs.sha_short }}#g" ./tests/docker/.env sed -i "s#pytest:.*#pytest:${{ steps.extracter.outputs.version }}-${{ steps.extracter.outputs.sha_short }}#g" ./build/ci/jenkins/pod/rte.yaml sed -i "s#pytest:.*#pytest:${{ steps.extracter.outputs.version }}-${{ steps.extracter.outputs.sha_short }}#g" ./ci/jenkins/pod/rte.yaml + sed -i "s#pytest:.*#pytest:${{ steps.extracter.outputs.version }}-${{ steps.extracter.outputs.sha_short }}#g" ./ci/jenkins/pod/e2e.yaml git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" git config --local user.name "github-actions[bot]" git add ./tests/docker/.env git add ./build/ci/jenkins/pod/rte.yaml git add ./ci/jenkins/pod/rte.yaml + git add ./ci/jenkins/pod/e2e.yaml git commit -m "Update Pytest image changes" - name: Create Pull Request id: cpr @@ -78,7 +80,7 @@ jobs: with: token: ${{ secrets.ALL_CONTRIBUTORS_TOKEN }} author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> - signoff: false + signoff: true branch: update_pytest_${{ github.sha }} delete-branch: true title: '[automated] Update Pytest image changes'