We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 180eb15 commit 041889dCopy full SHA for 041889d
.github/workflows/vcpkg-auto-update.yml
@@ -61,6 +61,7 @@ jobs:
61
62
# Create new branch
63
new_branch="vcpkg-update-${{ steps.get-latest-tag.outputs.latest_vcpkg_tag }}"
64
+ echo "new_branch=${new_branch}" >> "$GITHUB_OUTPUT"
65
git checkout -b ${new_branch}
66
67
# Search and replace in all files except /thirdparty folder
@@ -84,7 +85,7 @@ jobs:
84
85
gh pr create --title "Bump vcpkg to ${{ steps.get-latest-tag.outputs.latest_vcpkg_tag }}" \
86
--body "This PR updates the vcpkg tag to ${{ steps.get-latest-tag.outputs.latest_vcpkg_tag }}" \
87
--base master \
- --head ${new_branch} \
88
+ --head ${{ steps.bump-vcpkg.outputs.new_branch }} \
89
--label bump-vcpkg \
90
--reviewer MaxRayskiy,Grantim
91
0 commit comments