Skip to content

Commit

Permalink
Make create-pr step condition not always false
Browse files Browse the repository at this point in the history
Fixup for 55d1557
  • Loading branch information
tautschnig committed Apr 15, 2023
1 parent 22b14f4 commit 3f0789d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/toolchain-upgrade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
echo "branch_exists=true" >> $GITHUB_ENV
fi
- name: Create Pull Request
if: ${{ ! env.branch_exists }}
if: ${{ env.branch_exists == 'false' }}
uses: peter-evans/create-pull-request@v4
with:
commit-message: Upgrade Rust toolchain to nightly-${{ env.next_toolchain_date }}
Expand Down

0 comments on commit 3f0789d

Please sign in to comment.