Skip to content

Commit 634ed47

Browse files
authored
Merge pull request #49 from legendu-net/dev
Merge dev Into main
2 parents a6a9424 + e3a3ccd commit 634ed47

3 files changed

Lines changed: 10 additions & 69 deletions

File tree

.github/pr.py

Lines changed: 0 additions & 67 deletions
This file was deleted.

.github/workflows/create_pr_dev_to_main.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,9 @@ jobs:
1313
- uses: actions/checkout@v6
1414
- name: Create PR From dev To main
1515
run: |
16-
.github/pr.py --head-branch dev --base-branch main --token ${{ secrets.GITHUBACTIONS }}
16+
curl -sSL https://raw.githubusercontent.com/legendu-net/github_actions_scripts/main/create_pull_request.py \
17+
| uv run --script - \
18+
--head-branch dev \
19+
--base-branch main \
20+
--token ${{ secrets.GITHUBACTIONS }}
1721

.github/workflows/create_pr_to_dev.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,9 @@ jobs:
1515
- uses: actions/checkout@v6
1616
- name: Create PR to dev
1717
run: |
18-
.github/pr.py --head-branch ${{ github.ref_name }} --base-branch dev --token ${{ secrets.GITHUBACTIONS }}
18+
curl -sSL https://raw.githubusercontent.com/legendu-net/github_actions_scripts/main/create_pull_request.py \
19+
| uv run --script - \
20+
--head-branch ${{ github.ref_name }} \
21+
--base-branch dev \
22+
--token ${{ secrets.GITHUBACTIONS }}
1923

0 commit comments

Comments
 (0)