0
0
mirror of https://github.com/saltstack-formulas/openssh-formula.git synced 2026-05-12 22:32:47 +02:00

chore: apply template copier-ssf-ci at v1.7.0

This commit is contained in:
Dafydd Jones 2025-06-09 13:29:56 +01:00
parent 0a410abb52
commit cd767153ab
3 changed files with 10 additions and 1 deletions

View File

@ -1,5 +1,5 @@
# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY # Changes here will be overwritten by Copier; NEVER EDIT MANUALLY
_commit: v1.6.3 _commit: v1.7.0
_src_path: https://github.com/dafyddj/copier-ssf-ci _src_path: https://github.com/dafyddj/copier-ssf-ci
failure_permitted_pattern: (?x)(-master$|^fedora-41-|^amazonlinux-2-) failure_permitted_pattern: (?x)(-master$|^fedora-41-|^amazonlinux-2-)
formula_name: openssh formula_name: openssh

View File

@ -17,6 +17,13 @@ ci:
submodules: false submodules: false
default_stages: [pre-commit] default_stages: [pre-commit]
repos: repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: check-merge-conflict
name: Check for Git merge conflicts
args: [--assume-in-merge]
exclude: ^docs/AUTHORS.rst$
- repo: https://github.com/dafyddj/mirrors-commitlint - repo: https://github.com/dafyddj/mirrors-commitlint
rev: v19.8.1 rev: v19.8.1
hooks: hooks:

View File

@ -6,7 +6,9 @@ module.exports = {
'header-max-length': [2, 'always', 72], 'header-max-length': [2, 'always', 72],
}, },
ignores: [ ignores: [
(commit) => commit.startsWith("chore(copier):"),
(commit) => commit.startsWith("chore(deps):"), (commit) => commit.startsWith("chore(deps):"),
(commit) => commit.startsWith("ci(pre-commit.ci):"),
(commit) => commit.startsWith("[CI merge]") (commit) => commit.startsWith("[CI merge]")
], ],
}; };