cbe726badd
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [commitlint/commitlint](https://github.com/conventional-changelog/commitlint) | container | patch | `20.5.1` → `20.5.2` | | [docker.io/thegeeklab/git-sv](https://github.com/thegeeklab/git-sv) | container | minor | `2.0.11` → `2.1.0` | --- ### Release Notes <details> <summary>conventional-changelog/commitlint (commitlint/commitlint)</summary> ### [`v20.5.2`](https://github.com/conventional-changelog/commitlint/blob/HEAD/CHANGELOG.md#2052-2026-04-25) [Compare Source](https://github.com/conventional-changelog/commitlint/compare/v20.5.1...v20.5.2) ##### Bug Fixes - update dependency global-directory to v5 ([#​4698](https://github.com/conventional-changelog/commitlint/issues/4698)) ([a8b6224](https://github.com/conventional-changelog/commitlint/commit/a8b622497b5ac1bb8d56791a678cc03021b5ade8)) </details> <details> <summary>thegeeklab/git-sv (docker.io/thegeeklab/git-sv)</summary> ### [`v2.1.0`](https://github.com/thegeeklab/git-sv/releases/tag/v2.1.0) [Compare Source](https://github.com/thegeeklab/git-sv/compare/v2.0.11...v2.1.0) #### v2.1.0 (2026-04-24) ##### Features - add `--force` flag to tag subcommand ([#​308](https://github.com/thegeeklab/git-sv/issues/308)) ([`a75a19d`](https://github.com/thegeeklab/git-sv/commit/a75a19d)) ##### Bug Fixes - **deps:** update module github.com/go-git/go-git/v5 to v5.18.0 \[security] ([#​305](https://github.com/thegeeklab/git-sv/issues/305)) ([`f4262f4`](https://github.com/thegeeklab/git-sv/commit/f4262f4)) - **deps:** update module github.com/rs/zerolog to v1.35.1 ([#​307](https://github.com/thegeeklab/git-sv/issues/307)) ([`21cbde0`](https://github.com/thegeeklab/git-sv/commit/21cbde0)) - **deps:** update module github.com/go-git/go-git/v5 to v5.17.2 ([#​299](https://github.com/thegeeklab/git-sv/issues/299)) ([`995a15b`](https://github.com/thegeeklab/git-sv/commit/995a15b)) - **deps:** update module github.com/urfave/cli/v3 to v3.8.0 ([#​298](https://github.com/thegeeklab/git-sv/issues/298)) ([`7979f3e`](https://github.com/thegeeklab/git-sv/commit/7979f3e)) - **deps:** update module github.com/go-git/go-git/v5 to v5.17.1 ([#​241](https://github.com/thegeeklab/git-sv/issues/241)) ([`1493b53`](https://github.com/thegeeklab/git-sv/commit/1493b53)) ##### Others - **docker:** update docker.io/library/alpine:3.23 docker digest to [`5b10f43`](https://github.com/thegeeklab/git-sv/commit/5b10f43) ([#​302](https://github.com/thegeeklab/git-sv/issues/302)) ([`6f0a618`](https://github.com/thegeeklab/git-sv/commit/6f0a618)) - **deps:** update golang patch version ([#​301](https://github.com/thegeeklab/git-sv/issues/301)) ([`a5f9b09`](https://github.com/thegeeklab/git-sv/commit/a5f9b09)) - **docker:** update docker.io/library/golang:1.26.1 docker digest to [`cd78d88`](https://github.com/thegeeklab/git-sv/commit/cd78d88) ([#​300](https://github.com/thegeeklab/git-sv/issues/300)) ([`446cb83`](https://github.com/thegeeklab/git-sv/commit/446cb83)) </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - Only on Sunday and Saturday (`* * * * 0,6`) - Automerge - Between 12:00 AM and 03:59 AM (`* 0-3 * * *`) 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xNDAuMCIsInVwZGF0ZWRJblZlciI6IjQzLjE0MS41IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJraW5kL2RlcGVuZGVuY3kiXX0=--> --------- Co-authored-by: DaanSelen <135789+daanselen@noreply.gitea.com> Reviewed-on: https://gitea.com/gitea/helm-actions/pulls/138 Co-authored-by: Renovate Bot <renovate-bot@gitea.com> Co-committed-by: Renovate Bot <renovate-bot@gitea.com>
20 lines
386 B
YAML
20 lines
386 B
YAML
name: commitlint
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- "*"
|
|
types:
|
|
- opened
|
|
- edited
|
|
|
|
jobs:
|
|
check-and-test:
|
|
runs-on: ubuntu-latest
|
|
container: commitlint/commitlint:20.5.2
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- name: check PR title
|
|
run: |
|
|
echo "${{ gitea.event.pull_request.title }}" | commitlint --config .commitlintrc.json
|