mirror of
https://codeberg.org/forgejo/forgejo
synced 2024-11-25 19:26:09 +01:00
Merge pull request 'Update dependency codespell to v2.3.0' (#3898) from renovate/codespell-2.x-lockfile into forgejo
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/3898 Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org>
This commit is contained in:
commit
3cf92e07df
|
@ -80,7 +80,7 @@ func NewIDFromString(hexHash string) (ObjectID, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// IsEmptyCommitID checks if an hexadecimal string represents an empty commit according to git (only '0').
|
// IsEmptyCommitID checks if an hexadecimal string represents an empty commit according to git (only '0').
|
||||||
// If objectFormat is not nil, the length will be checked as well (otherwise the lenght must match the sha1 or sha256 length).
|
// If objectFormat is not nil, the length will be checked as well (otherwise the length must match the sha1 or sha256 length).
|
||||||
func IsEmptyCommitID(commitID string, objectFormat ObjectFormat) bool {
|
func IsEmptyCommitID(commitID string, objectFormat ObjectFormat) bool {
|
||||||
if commitID == "" {
|
if commitID == "" {
|
||||||
return true
|
return true
|
||||||
|
|
6
poetry.lock
generated
6
poetry.lock
generated
|
@ -16,13 +16,13 @@ colorama = {version = "*", markers = "platform_system == \"Windows\""}
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "codespell"
|
name = "codespell"
|
||||||
version = "2.2.6"
|
version = "2.3.0"
|
||||||
description = "Codespell"
|
description = "Codespell"
|
||||||
optional = false
|
optional = false
|
||||||
python-versions = ">=3.8"
|
python-versions = ">=3.8"
|
||||||
files = [
|
files = [
|
||||||
{file = "codespell-2.2.6-py3-none-any.whl", hash = "sha256:9ee9a3e5df0990604013ac2a9f22fa8e57669c827124a2e961fe8a1da4cacc07"},
|
{file = "codespell-2.3.0-py3-none-any.whl", hash = "sha256:a9c7cef2501c9cfede2110fd6d4e5e62296920efe9abfb84648df866e47f58d1"},
|
||||||
{file = "codespell-2.2.6.tar.gz", hash = "sha256:a8c65d8eb3faa03deabab6b3bbe798bea72e1799c7e9e955d57eca4096abcff9"},
|
{file = "codespell-2.3.0.tar.gz", hash = "sha256:360c7d10f75e65f67bad720af7007e1060a5d395670ec11a7ed1fed9dd17471f"},
|
||||||
]
|
]
|
||||||
|
|
||||||
[package.extras]
|
[package.extras]
|
||||||
|
|
|
@ -77,7 +77,7 @@ func (defaultHandler) NewRequest(ctx context.Context, w *webhook_model.Webhook,
|
||||||
// see https://codeberg.org/codeberg/community/issues/1556
|
// see https://codeberg.org/codeberg/community/issues/1556
|
||||||
payloadContent, err = substituteRefShortName(payloadContent)
|
payloadContent, err = substituteRefShortName(payloadContent)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, nil, fmt.Errorf("could not substiture ref: %w", err)
|
return nil, nil, fmt.Errorf("could not substitute ref: %w", err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue