Skip to content

Commit

Permalink
v24.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
GitRon committed Nov 12, 2024
1 parent 7a50c13 commit c3062fa
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 1 deletion.
11 changes: 11 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,14 @@ repos:
charts/.*
|.*\.py
)$
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: no-commit-to-branch
args:
[
"--pattern",
'^^(?!(?:feature|hotfix|bugfix|refactor|maintenance)/[\w\d\-_#]+).*$',
]
stages: [ pre-commit ]
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

**24.11.1 (2024-11-12)**
* Added branch naming convention checker via pre-commit

**24.10.1 (2024-10-08)**
* Added Python 3.13 support
* Added Djade linter to pre-commit
Expand Down
2 changes: 1 addition & 1 deletion ambient_package_update/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Ambient package update tool for clean and swift maintenance"""

__version__ = "24.10.1"
__version__ = "24.11.1"
11 changes: 11 additions & 0 deletions ambient_package_update/templates/.pre-commit-config.yaml.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,14 @@ repos:
charts/.*
|.*\.py
)$

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: no-commit-to-branch
args:
[
"--pattern",
'^^(?!(?:feature|hotfix|bugfix|refactor|maintenance)/[\w\d\-_#]+).*$',
]
stages: [ pre-commit ]

0 comments on commit c3062fa

Please sign in to comment.