Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .commitlintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ module.exports = {
rules: {
"scope-enum": [2, "always", scopes],
"header-max-length": [2, "always", 100],
"body-max-line-length": [0],
"footer-max-line-length": [0],
},

// cz-git config (used by `git cz` interactive prompt)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/commit-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/labeler@v5
- uses: actions/labeler@v6
with:
sync-labels: true
2 changes: 1 addition & 1 deletion .github/workflows/lock-threads.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: dessant/lock-threads@v5
- uses: dessant/lock-threads@v6
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lua-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

# Скачать StyLua из GitHub Releases и добавить в PATH.
# Кешируется между запусками по версии.
- name: Cache StyLua
id: cache-stylua
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.local/bin/stylua
key: stylua-${{ env.STYLUA_VERSION }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/markdown-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

# avto-dev/markdown-lint — запускает markdownlint-cli в Docker.
# fix: false — только проверка, без автоисправления.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/misspell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

# reviewdog/action-misspell:
# - Сканирует все текстовые файлы в репозитории
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/shell-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

# Fish shell доступен через PPA
- name: Install Fish shell
Expand All @@ -56,7 +56,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

# reviewdog/action-shellcheck:
# - На PR: оставляет inline-комментарии прямо в diff
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/validate-configs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
toml: ${{ steps.filter.outputs.toml }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

# dorny/paths-filter — сравнивает файлы в PR/push с базовой веткой
# и выдаёт булевы outputs для каждого фильтра.
Expand All @@ -65,7 +65,7 @@ jobs:
if: needs.changes.outputs.json == 'true'

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

# python3 -m json.tool — встроенный JSON-валидатор Python.
# Пропускаем .json.tmpl (содержат Go-шаблоны).
Expand All @@ -91,7 +91,7 @@ jobs:
if: needs.changes.outputs.yaml == 'true'

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

# yamllint — линтер для YAML, проверяет синтаксис и стиль.
# -d relaxed: менее строгие правила (допускает длинные строки и т.п.)
Expand All @@ -114,7 +114,7 @@ jobs:
if: needs.changes.outputs.toml == 'true'

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

# Python 3.11+ имеет встроенный модуль tomllib.
# Используем его для валидации без внешних зависимостей.
Expand Down