Skip to content

Commit e413755

Browse files
Ivan GorshkovIvan Gorshkov
authored andcommitted
ga to run on conflict resolution
1 parent 8c47439 commit e413755

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/create-clean-gen-pr.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ jobs:
6363
run: |
6464
CLEAN_GEN_BRANCH="${{ steps.check-branches.outputs.clean_gen_branch }}"
6565
66-
# Create PR body
67-
PR_BODY=$(cat <<EOF
66+
# Create PR body file
67+
cat > pr_body.md <<EOF
6868
# SDK Generation with Resolved Conflicts
6969

7070
This PR contains the successfully generated SDK with custom code conflicts resolved.
@@ -82,17 +82,16 @@ This PR contains the successfully generated SDK with custom code conflicts resol
8282

8383
1. Review the changes in this PR
8484
2. Verify all conflicts were properly resolved
85-
3. Merge to `main` to complete the SDK update
85+
3. Merge to \`main\` to complete the SDK update
8686

8787
---
8888
This PR was created automatically after conflict resolution
8989
EOF
90-
)
9190

9291
# Create the PR
9392
gh pr create \
9493
--repo ${{ github.repository }} \
9594
--head "$CLEAN_GEN_BRANCH" \
9695
--base main \
9796
--title "✅ SDK Update with Resolved Conflicts" \
98-
--body "$PR_BODY"
97+
--body-file pr_body.md

0 commit comments

Comments
 (0)