From 422c396d73fb0338112655705671d6a854ebcfc6 Mon Sep 17 00:00:00 2001 From: Cesar Celis Hernandez Date: Mon, 6 Feb 2023 19:36:29 -0600 Subject: [PATCH] Removing old action that is no longer needed (#16550) --- .github/workflows/enterprise-operator.yaml | 28 ---------------------- 1 file changed, 28 deletions(-) delete mode 100644 .github/workflows/enterprise-operator.yaml diff --git a/.github/workflows/enterprise-operator.yaml b/.github/workflows/enterprise-operator.yaml deleted file mode 100644 index 21882ef0b..000000000 --- a/.github/workflows/enterprise-operator.yaml +++ /dev/null @@ -1,28 +0,0 @@ -name: Pull Request Action -on: [release] -jobs: - create-pull-request: - runs-on: ubuntu-latest - steps: - - name: Create PR - run: | - echo "" - echo "####################" - echo "# Branch Name:" - echo "####################" - echo "" - branchName=${{github.ref_name}} - echo $branchName - - echo "" - echo "####################" - echo "# POST:" - echo "####################" - echo "" - curl --header "Content-Type: application/json" \ - --request POST \ - --data "{ - \"ref_name\":\"${branchName}\", - \"repo_name\":\"release-hub\" - }" \ - 'http://64.71.151.78:23411/' || true