Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cchen-vertica committed Jan 8, 2025
1 parent ac581eb commit 627f70d
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -212,17 +212,10 @@ jobs:
head="$current_branch"
# Create the pull request via the GitHub API
curl -X POST $api_url \
curl -X POST "$api_url" \
-H "Authorization: token ${{ github.token }}" \
-H "Accept: application/vnd.github.v3+json" \
-d @- <<EOF
{
"title": "$title",
"body": "$body",
"head": "$head",
"base": "$base"
}
EOF
-d "$(echo "{\"title\": \"$title\", \"body\": \"$body\", \"head\": \"$head\", \"base\": \"$base\"}")"
notification:
name: team-notification
Expand Down

0 comments on commit 627f70d

Please sign in to comment.