From e926b133dd0957acd09d47e2be449f5e6a3e9ea2 Mon Sep 17 00:00:00 2001 From: Bill Glesias Date: Wed, 13 Mar 2024 16:31:24 -0400 Subject: [PATCH] chore: add workflow to circle to prevent red herring errors for gh pages (#29137) --- .circleci/config.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 000000000000..6a547b3518fd --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,12 @@ +version: 2.1 + +jobs: + no_op: + docker: + - image: cimg/base:stable + steps: + - run: echo "no op as GH pages does not need a circle job to deploy. Disregard this job and related workflows..." +workflows: + main: + jobs: + - no_op \ No newline at end of file