Skip to content

Commit 5ddca12

Browse files
committed
add pr creation in idehelper workflow
1 parent 4a05ed4 commit 5ddca12

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/generate_idehelper.yml

+10
Original file line numberDiff line numberDiff line change
@@ -60,3 +60,13 @@ jobs:
6060
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6161

6262

63+
- name: Create Pull Request
64+
if: env.has_changes == 'true'
65+
run: |
66+
gh pr create \
67+
--base dev \
68+
--head ${{ env.branch_name }} \
69+
--title "Auto-generated IDE helper update" \
70+
--body "This PR updates the IDE helper files automatically."
71+
env:
72+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)