mirror of
https://github.com/KhronosGroup/Vulkan-Hpp.git
synced 2024-10-14 16:32:17 +00:00
Merge pull request #1233 from theHamsta/dont-repeat-update
ci: only create a header update PR if tag does not yet exist
This commit is contained in:
commit
5f649a999b
10
.github/workflows/update-header-pr.yml
vendored
10
.github/workflows/update-header-pr.yml
vendored
@ -46,7 +46,15 @@ jobs:
|
||||
git config user.email "noreply@github.com"
|
||||
git add Vulkan-Headers vulkan
|
||||
rm -rf build
|
||||
git commit -m "Update Vulkan-Headers to $VK_HEADER_GIT_TAG" || echo 'No commit necessary!'
|
||||
git fetch --all --tags
|
||||
if [ -z $(git tag | grep $VK_HEADER_GIT_TAG) ]
|
||||
then
|
||||
echo "Creating commit for new tag: $VK_HEADER_GIT_TAG"
|
||||
git commit -m "Update Vulkan-Headers to $VK_HEADER_GIT_TAG" || echo 'No commit necessary!'
|
||||
else
|
||||
echo "Tag already exists: $VK_HEADER_GIT_TAG"
|
||||
fi
|
||||
git stash
|
||||
git clean -xf
|
||||
|
||||
- name: Create Pull Request
|
||||
|
Loading…
Reference in New Issue
Block a user