Skip to content
Open
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
30 changes: 30 additions & 0 deletions .commitlintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
module.exports = {
extends: ['@commitlint/config-conventional'],
ignores: [
(message) => message === 'Initial plan',
],
rules: {
'type-enum': [
2,
'always',
[
'feat',
'fix',
'chore',
'docs',
'style',
'refactor',
'perf',
'test',
'build',
'ci',
'revert',
],
],
'type-case': [2, 'always', 'lower-case'],
'type-empty': [2, 'never'],
'subject-empty': [2, 'never'],
'subject-full-stop': [2, 'never', '.'],
'header-max-length': [2, 'always', 100],
},
};
27 changes: 0 additions & 27 deletions .commitlintrc.json

This file was deleted.

3 changes: 0 additions & 3 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
'config:recommended',
],
ignoreTests: true,
automergeType: 'pr',
automergeStrategy: 'rebase',
packageRules: [
{
matchUpdateTypes: [
Expand All @@ -14,7 +12,6 @@
],
groupName: 'all non-major dependencies',
groupSlug: 'all-minor-patch',
automerge: true,
ignoreTests: true,
matchPackageNames: [
'*',
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/commit-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,5 @@ jobs:
- name: Validate Conventional Commits
uses: wagoid/commitlint-github-action@v6
with:
configFile: .commitlintrc.json
configFile: .commitlintrc.js

5 changes: 0 additions & 5 deletions applications/flask-watchlist.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,6 @@ kind: Application
metadata:
name: flask-watchlist
namespace: argocd
annotations:
argocd-image-updater.argoproj.io/image-list: flask-watchlist=fullstackjam/flask-watchlist
argocd-image-updater.argoproj.io/write-back-method: argocd
argocd-image-updater.argoproj.io/git-branch: master
argocd-image-updater.argoproj.io/update-strategy: newest-build
spec:
project: default
source:
Expand Down
5 changes: 0 additions & 5 deletions applications/portfolio.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,6 @@ kind: Application
metadata:
name: portfolio
namespace: argocd
annotations:
argocd-image-updater.argoproj.io/image-list: portfolio=fullstackjam/portfolio
argocd-image-updater.argoproj.io/write-back-method: argocd
argocd-image-updater.argoproj.io/git-branch: master
argocd-image-updater.argoproj.io/update-strategy: newest-build
spec:
project: default
source:
Expand Down
Loading