mirror of
https://gitea.com/gitea/helm-actions.git
synced 2026-04-05 17:23:13 +00:00
This PR contains the following updates: | Package | Type | Update | Change | Age | Confidence | |---|---|---|---|---|---| | [commitlint/commitlint](https://github.com/conventional-changelog/commitlint) | container | minor | `20.1.0` -> `20.2.0` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | [docker.io/thegeeklab/git-sv](https://github.com/thegeeklab/git-sv) | container | patch | `2.0.8` -> `2.0.9` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | | [markdownlint-cli](https://github.com/igorshubovych/markdownlint-cli) | devDependencies | minor | [`^0.46.0` -> `^0.47.0`](https://renovatebot.com/diffs/npm/markdownlint-cli/0.46.0/0.47.0) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>conventional-changelog/commitlint (commitlint/commitlint)</summary> ### [`v20.2.0`](https://github.com/conventional-changelog/commitlint/blob/HEAD/CHANGELOG.md#2020-2025-12-05) [Compare Source](https://github.com/conventional-changelog/commitlint/compare/v20.1.0...v20.2.0) ##### Bug Fixes - update dependency glob to v11 \[security] ([#​4561](https://github.com/conventional-changelog/commitlint/issues/4561)) ([a89a08b](a89a08b2fd)) ##### Features - **cz-commitlint:** support customizable commit prompt with emojis ([#​4540](https://github.com/conventional-changelog/commitlint/issues/4540)) ([803c05b](803c05b6d7)) - **lint:** update ESLint configuration to use Vitest and remove Jest plugin ([#​4542](https://github.com/conventional-changelog/commitlint/issues/4542)) ([63e7ad4](63e7ad4e47)) - **rules:** add breaking-change-exclamation-mark ([#​4548](https://github.com/conventional-changelog/commitlint/issues/4548)) ([c4d419b](c4d419bc76)), closes [#​4547](https://github.com/conventional-changelog/commitlint/issues/4547) </details> <details> <summary>thegeeklab/git-sv (docker.io/thegeeklab/git-sv)</summary> ### [`v2.0.9`](https://github.com/thegeeklab/git-sv/releases/tag/v2.0.9) [Compare Source](https://github.com/thegeeklab/git-sv/compare/v2.0.8...v2.0.9) #### v2.0.9 (2025-12-05) ##### Others - **deps:** update docker.io/library/alpine docker tag to v3.23 ([#​260](https://github.com/thegeeklab/git-sv/issues/260)) ([`2f6207a`](https://github.com/thegeeklab/git-sv/commit/2f6207a)) - **deps:** update golang patch version ([#​261](https://github.com/thegeeklab/git-sv/issues/261)) ([`a4cc5da`](https://github.com/thegeeklab/git-sv/commit/a4cc5da)) </details> <details> <summary>igorshubovych/markdownlint-cli (markdownlint-cli)</summary> ### [`v0.47.0`](https://github.com/igorshubovych/markdownlint-cli/releases/tag/v0.47.0) [Compare Source](https://github.com/igorshubovych/markdownlint-cli/compare/v0.46.0...v0.47.0) - Add output and exit code support for warnings - Update `markdownlint` dependency to `0.40.0` - Improve `MD011`/`MD013`/`MD051`/`MD060` - Update all dependencies via `Dependabot` </details> --- ### Configuration 📅 **Schedule**: Branch creation - Only on Sunday and Saturday ( * * * * 0,6 ) (UTC), Automerge - Between 12:00 AM and 03:59 AM ( * 0-3 * * * ) (UTC). 🚦 **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 [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xOC4xIiwidXBkYXRlZEluVmVyIjoiNDEuMTguMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsia2luZC9kZXBlbmRlbmN5Il19--> Reviewed-on: https://gitea.com/gitea/helm-actions/pulls/88 Reviewed-by: DaanSelen <daanselen@noreply.gitea.com> 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.2.0
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- name: check PR title
|
|
run: |
|
|
echo "${{ gitea.event.pull_request.title }}" | commitlint --config .commitlintrc.json
|