Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): adjusting allowed commit msgs #329

Merged
merged 2 commits into from
Jul 28, 2024
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: 1 addition & 1 deletion .github/workflows/.reusable-compliance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
for commit in ${COMMITS}; do
MSG=$(git log ${commit} -n1 --pretty=%s)
TYPE=$(echo ${MSG} | awk '{{ print $1 }}')
if ! [[ "${TYPE}" =~ ^(build|ci|docs|feat|fix|refactor|test|update):$ ]]; then
if ! [[ "${TYPE}" =~ ^(build|build\(deps\)|ci|docs|feat|fix|refactor|test|update):$ ]]; then
EXIT=1
echo "Commit message of commit ${commit} doesn't conform to 'type: msg' format:"
echo "${MSG}"
Expand Down
4 changes: 2 additions & 2 deletions charts/semgr8s/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: semgr8s
description: Semgrep-based Policy Controller for Kubernetes
type: application
version: "0.1.19"
appVersion: "0.1.19"
version: "0.1.20"
appVersion: "0.1.20"
keywords:
- kubernetes
- admission controller
Expand Down
Loading