Skip to content

Commit

Permalink
fix: Fixed issue where promote was looking at v6 branch.
Browse files Browse the repository at this point in the history
  • Loading branch information
Donald Labaj committed Sep 19, 2024
1 parent 05df99c commit a5f759f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pr-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
git fetch origin pull/$GH_PR_NUM/head:tmp
git checkout tmp
- run: |
git rev-parse origin/v6
git rev-parse origin/main
git rev-parse HEAD
git rev-parse origin/v6..HEAD
git log origin/v6..HEAD --format="%b"
git rev-parse origin/main..HEAD
git log origin/main..HEAD --format="%b"
# Yes, we really want to checkout the PR
# Injected by generate-workflows.js
- uses: actions/setup-node@v1
Expand Down

0 comments on commit a5f759f

Please sign in to comment.