diff --git a/build_deploy.sh b/build_deploy.sh
deleted file mode 100755
index 4a73579a..00000000
--- a/build_deploy.sh
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/bin/bash
-
-# --------------------------------------------
-# Export vars for helper scripts to use
-# --------------------------------------------
-# name of app-sre "application" folder this component lives in; needs to match for quay
-export COMPONENT="learning-resources"
-# IMAGE should match the quay repo set by app.yaml in app-interface
-export IMAGE="quay.io/cloudservices/learning-resources"
-export WORKSPACE=${WORKSPACE:-$APP_ROOT} # if running in jenkins, use the build's workspace
-export APP_ROOT=$(pwd)
-#16 is the default Node version. Change this to override it.
-export NODE_BUILD_VERSION=16
-COMMON_BUILDER=https://raw.githubusercontent.com/RedHatInsights/insights-frontend-builder-common/master
-
-set -exv
-# source is preferred to | bash -s in this case to avoid a subshell
-source <(curl -sSL $COMMON_BUILDER/src/frontend-build.sh)
-BUILD_RESULTS=$?
-
-# Stubbed out for now
-mkdir -p "$WORKSPACE/artifacts"
-cat << EOF > "$WORKSPACE/artifacts/junit-dummy.xml"
-
-
-
-EOF
-
-# teardown_docker
-exit $BUILD_RESULTS
diff --git a/pr_check.sh b/pr_check.sh
deleted file mode 100755
index 23e072e0..00000000
--- a/pr_check.sh
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/bin/bash
-
-# --------------------------------------------
-# Export vars for helper scripts to use
-# --------------------------------------------
-# name of app-sre "application" folder this component lives in; needs to match for quay
-export COMPONENT="learning-resources"
-# IMAGE should match the quay repo set by app.yaml in app-interface
-export IMAGE="quay.io/cloudservices/learning-resources"
-export WORKSPACE=${WORKSPACE:-$APP_ROOT} # if running in jenkins, use the build's workspace
-export APP_ROOT=$(pwd)
-#16 is the default Node version. Change this to override it.
-export NODE_BUILD_VERSION=16
-COMMON_BUILDER=https://raw.githubusercontent.com/RedHatInsights/insights-frontend-builder-common/master
-
-
-set -exv
-# source is preferred to | bash -s in this case to avoid a subshell
-source <(curl -sSL $COMMON_BUILDER/src/frontend-build.sh)
-BUILD_RESULTS=$?
-
-# Stubbed out for now
-mkdir -p $WORKSPACE/artifacts
-cat << EOF > $WORKSPACE/artifacts/junit-dummy.xml
-
-
-
-EOF
-
-# teardown_docker
-exit $BUILD_RESULTS
\ No newline at end of file