Skip to content

Commit e4acc94

Browse files
committed
Update .github/workflows/rebaseline-tests.yml
1 parent 178bdfa commit e4acc94

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/rebaseline-tests.yml

+8-3
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ jobs:
1414
- name: Checkout repo
1515
uses: actions/checkout@v4
1616
with:
17+
fetch-depth: 0
1718
submodules: true
1819
- name: pip install
1920
run: |
@@ -36,15 +37,19 @@ jobs:
3637
echo "EM_CONFIG=$EM_CONFIG" >> $GITHUB_ENV
3738
- name: Rebaseline tests
3839
run: |
39-
./bootstrap
4040
git config user.name emscripten-bot
4141
git config user.email [email protected]
42+
#echo "TEST" >> README.md
43+
#git add README.md
44+
#git checkout -b testing ${{ github.ref_name }}
45+
#git commit -m "Testing"
46+
./bootstrap
4247
./tools/maint/rebaseline_tests.py
4348
- name: Create PR
4449
id: cpr
4550
run: |
46-
git push origin
47-
gh pr create --fill
51+
git push origin testing
52+
gh pr create --fill --base ${{ github.ref_name }}
4853
env:
4954
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5055
- name: Enable auto-merge

0 commit comments

Comments
 (0)