Skip to content

Commit

Permalink
fix(ci): wrong variable (#822)
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaMilosa authored Aug 29, 2024
1 parent 248ef92 commit e74a315
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/qualify.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -155,12 +155,12 @@ jobs:
BRANCH_REF=$(git ls-remote --heads https://github.com/dfinity/dre.git refs/heads/${AUTO_UPDATE_BRANCH})
if [ -z "$BRANCH_REF" ]; then
echo "Branch $BRANCH_REF does not exist, creating..."
git checkout -b $BRANCH_REF
echo "Branch $AUTO_UPDATE_BRANCH does not exist, creating..."
git checkout -b $AUTO_UPDATE_BRANCH
echo "SHOULD_CREATE_PR=true" >> $GITHUB_OUTPUT
else
echo "Branch $BRANCH_REF exists"
git checkout $BRANCH_REF
echo "Branch $AUTO_UPDATE_BRANCH exists"
git checkout $AUTO_UPDATE_BRANCH
echo "SHOULD_CREATE_PR=false" >> $GITHUB_OUTPUT
fi
Expand Down

0 comments on commit e74a315

Please sign in to comment.