diff options
| author | Marc Cornellà <marc@mcornella.com> | 2024-10-14 13:15:39 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-14 13:15:39 +0200 |
| commit | b3ba8da4218c3b9e1e5e45e1d4c00d312ff7226b (patch) | |
| tree | 9903f90377d36cad233bf0405d3d044d5bb8e882 /.github/workflows/dependencies | |
| parent | 9bfa3395f34f63d14945e01c45c72ec43d372dfa (diff) | |
| download | zsh-b3ba8da4218c3b9e1e5e45e1d4c00d312ff7226b.tar.gz zsh-b3ba8da4218c3b9e1e5e45e1d4c00d312ff7226b.tar.bz2 zsh-b3ba8da4218c3b9e1e5e45e1d4c00d312ff7226b.zip | |
ci(dependencies): use tag version in git commit if available (#12756)
Related: https://github.com/ohmyzsh/ohmyzsh/pull/12747#issuecomment-2410440748
Diffstat (limited to '.github/workflows/dependencies')
| -rw-r--r-- | .github/workflows/dependencies/updater.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/dependencies/updater.py b/.github/workflows/dependencies/updater.py index f85c9eda7..02cff9030 100644 --- a/.github/workflows/dependencies/updater.py +++ b/.github/workflows/dependencies/updater.py @@ -228,7 +228,7 @@ class Dependency: self.__apply_upstream_changes() # Add all changes and commit - has_new_commit = Git.add_and_commit(self.name, short_sha) + has_new_commit = Git.add_and_commit(self.name, new_version) if has_new_commit: # Push changes to remote |
