Skip to content

Commit 760dc73

Browse files
author
Alexander Rogalskiy
committed
Updates on files
1 parent 6b07759 commit 760dc73

32 files changed

+895328
-238
lines changed

.deepsource.toml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
version = 1
2+
3+
test_patterns = [
4+
"tests/**"
5+
]
6+
7+
exclude_patterns = [
8+
"setup.py"
9+
]
10+
11+
[[analyzers]]
12+
name = "python"
13+
enabled = true
14+
15+
[analyzers.meta]
16+
runtime_version = "3.x.x"
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# This workflow enforces the update of a changelog file on every pull request
2+
3+
name: "Enforce Changelog"
4+
5+
on:
6+
pull_request:
7+
types: [opened, synchronize, reopened, ready_for_review, labeled, unlabeled]
8+
9+
jobs:
10+
check:
11+
runs-on: ubuntu-latest
12+
timeout-minutes: 10
13+
steps:
14+
- name: Checkout code
15+
uses: actions/checkout@v2
16+
- name: Enforce changelog️
17+
uses: dangoslen/changelog-enforcer@v2
18+
with:
19+
changeLogPath: "CHANGELOG.md"
20+
skipLabels: "Skip Changelog"

charts/templates/NOTES.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@ Thank you for installing Java Patterns Docs!
66

77
kubectl rollout status deployment {{ include "backend-java-patterns.fullname" . }}
88

9+
To get cluster information:
10+
11+
kubectl cluster-info
12+
913
- The Java Patterns Docs webapp are accessible through the landing page:
14+
1015
{{ if .Values.ingress.enabled }}
1116
{{- range $host := .Values.ingress.hosts }}
1217
{{- range .paths }}

makefiles/common.mk

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ GIT_COMMIT_AUTHOR_NAME := $(shell git show -s --format=%an)
1919
GIT_COMMIT_TIMESTAMP := $(shell git show -s --format=%ct)
2020
# GIT_DIRTY_TAG stores dirty git tag
2121
GIT_DIRTY_TAG := $(shell git describe --tags --always --dirty)
22+
# GIT_TAG stores git last tag
23+
GIT_TAG := $(shell git tag -l | grep -E '[0-9]+(.[0-9]+){2}' | sort -t. -k 1,1nr -k 2,2nr -k 3,3nr | head -1)
2224
# GIT_COMMIT_SHA stores git last commit hash
2325
GIT_COMMIT_SHA := $(shell git rev-parse --verify HEAD)
2426
# GIT_LOG_COMMIT_TIMESTAMP stores last commit to allow for reproducible builds

nodemon.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"ignore": [
3+
".git",
4+
"node_modules"
5+
],
6+
"watch": [
7+
"./"
8+
],
9+
"exec": "npm run all",
10+
"ext": "ts"
11+
}

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
"markdown-link-check": "^3.8.7",
5656
"markdownlint-cli": "^0.27.1",
5757
"node-fetch": "^3.2.3",
58+
"nodemon": "^2.0.15",
5859
"npm-package-arg": "^9.0.1",
5960
"opencollective-postinstall": "^2.0.3",
6061
"patch-package": "^6.4.7",
@@ -221,6 +222,7 @@
221222
"lint:text": "textlint docs",
222223
"lint:yaml": "yamllint --strict -c .yaml-lint.yml --ignore=mkdocs.yml --ignore=okteto/**/*.yaml --ignore=charts/**/*.yaml --ignore=k8s/**/*.yaml **/*.{yaml,yml}",
223224
"markdown": "markdown-link-check ./README.md ./SECURITY.md",
225+
"nodemon": "nodemon",
224226
"opencollective:install": "opencollective-postinstall || true",
225227
"package:changelog": "npm run dev --base_dir=../../ --workspace=packages/changelog --if-present",
226228
"package:contributors": "npm run dev --image_dir=../../images --workspace=packages/contributors --if-present",

0 commit comments

Comments
 (0)