ssh-action/.goreleaser.yaml
appleboy b27b9f8968
Some checks failed
testing main branch / default-user-name-password (push) Failing after 31s
testing main branch / check-ssh-key (push) Failing after 19s
testing main branch / support-key-passphrase (push) Failing after 4s
testing main branch / multiple-server (push) Failing after 5s
testing main branch / support-ed25519-key (push) Failing after 4s
testing main branch / testing-with-env (push) Failing after 5s
testing main branch / testing ipv6 (push) Failing after 23s
testing main branch / some special character (push) Failing after 5s
testing main branch / testing-capturing-output (push) Failing after 4s
testing main branch / testing-script-stop (push) Failing after 4s
testing main branch / testing-script-error (push) Failing after 4s
testing stable version / default-user-name-password (push) Failing after 8s
testing stable version / check-ssh-key (push) Failing after 8s
testing stable version / support-key-passphrase (push) Failing after 8s
testing stable version / multiple-server (push) Failing after 5s
testing stable version / support-ed25519-key (push) Failing after 5s
testing stable version / testing-with-env (push) Failing after 11s
chore: refactor system to improve efficiency and update API usage
- Update changelog order value from `4` to `5`

Signed-off-by: appleboy <appleboy.tw@gmail.com>
2025-03-29 00:29:34 +08:00

29 lines
668 B
YAML

builds:
- # If true, skip the build.
# Useful for library projects.
# Default is false
skip: true
changelog:
use: github
groups:
- title: Features
regexp: "^.*feat[(\\w)]*:+.*$"
order: 0
- title: "Bug fixes"
regexp: "^.*fix[(\\w)]*:+.*$"
order: 1
- title: "Enhancements"
regexp: "^.*chore[(\\w)]*:+.*$"
order: 2
- title: "Refactor"
regexp: "^.*refactor[(\\w)]*:+.*$"
order: 3
- title: "Build process updates"
regexp: ^.*?(build|ci)(\(.+\))??!?:.+$
order: 4
- title: "Documentation updates"
regexp: ^.*?docs?(\(.+\))??!?:.+$
order: 5
- title: Others