Removing old action that is no longer needed (#16550)

This commit is contained in:
Cesar Celis Hernandez 2023-02-06 19:36:29 -06:00 committed by GitHub
parent ffd57fde90
commit 422c396d73
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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