Skip to content

Commit ef8f43f

Browse files
committed
add workflow for update release pr
1 parent 124130a commit ef8f43f

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/release_pr.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Update release PR
2+
3+
on:
4+
push:
5+
workflow_dispatch:
6+
7+
jobs:
8+
update-pr:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
13+
- uses: actions/setup-python@v5
14+
with:
15+
python-version: "3.x"
16+
17+
- name: Run release PR update
18+
env:
19+
GITHUB_TOKEN: ${{ secrets.PR_TOKEN }}
20+
run: |
21+
pwd
22+
python ./.github/update)release_pr.py

0 commit comments

Comments
 (0)