merge/upstream-full #105

Manually merged
jabber.developer merged 407 commits from merge/upstream-full into master 2026-05-26 17:54:34 +00:00
396 changed files with 13708 additions and 36218 deletions
Showing only changes of commit 9407eb958d - Show all commits

23
.commitlintrc.json Normal file
View File

@@ -0,0 +1,23 @@
{
"extends": ["@commitlint/config-conventional"],
"rules": {
"type-enum": [
2,
"always",
[
"feat",
"fix",
"docs",
"style",
"refactor",
"perf",
"tests",
"build",
"ci",
"chore",
"cleanup"
]
],
"subject-case": [0]
}
}

17
.github/workflows/commit-lint.yml vendored Normal file
View File

@@ -0,0 +1,17 @@
name: "Commits"
on:
pull_request:
branches: [master]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
# Applies to all commits
fetch-depth: 0
- name: "Conventional Commits"
uses: wagoid/commitlint-github-action@v6