commit 947335be915fc83e16f83befa22a6ad8eb84ab6f
parent 0b8a72b73934d33a05e20c255298e88cd921df32
Author: dundargoc <gocdundar@gmail.com>
Date: Wed, 1 May 2024 17:18:44 +0200
ci: update vim_patches.yml to follow conventional commits
This will change the commits messages from
```
version.c: update [skip ci]
```
to
```
docs: update version.c [skip ci]
```
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/vim_patches.yml b/.github/workflows/vim_patches.yml
@@ -50,6 +50,6 @@ jobs:
if: ${{ steps.update-version.outputs.NEW_PATCHES != 0 }}
run: |
git add -u
- git commit -m 'version.c: update [skip ci]'
+ git commit -m 'docs: update version.c [skip ci]'
git push --force https://${GITHUB_ACTOR}:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY} ${VERSION_BRANCH}
gh pr create --draft --fill --label vim-patch --base ${GITHUB_REF#refs/heads/} --head ${VERSION_BRANCH} || true