Skip to content

Commit 9b783e4

Browse files
authored
Update create_pr.yml
1 parent 7fe6565 commit 9b783e4

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/create_pr.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,16 @@ on:
55
schedule:
66
- cron: '0 0 1 * *'
77

8+
89
jobs:
910
create_pr:
1011
runs-on: ubuntu-latest
1112

1213
steps:
1314
- uses: actions/checkout@v3
14-
15-
- name: Branch name test
16-
run: echo running on branch ${GITHUB_REF##*/}
15+
16+
- name: Install dependencies
17+
run: pip install -r requirements.txt
1718

1819
- name: Run merge.py
19-
run: python merge.py
20+
run: python merge.py --branch ${GITHUB_REF##*/}

0 commit comments

Comments
 (0)