Skip to content

Commit a5f759f

Browse files
author
Donald Labaj
committed
fix: Fixed issue where promote was looking at v6 branch.
1 parent 05df99c commit a5f759f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/pr-preview.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
git fetch origin pull/$GH_PR_NUM/head:tmp
1616
git checkout tmp
1717
- run: |
18-
git rev-parse origin/v6
18+
git rev-parse origin/main
1919
git rev-parse HEAD
20-
git rev-parse origin/v6..HEAD
21-
git log origin/v6..HEAD --format="%b"
20+
git rev-parse origin/main..HEAD
21+
git log origin/main..HEAD --format="%b"
2222
# Yes, we really want to checkout the PR
2323
# Injected by generate-workflows.js
2424
- uses: actions/setup-node@v1

0 commit comments

Comments
 (0)