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

ci: setup git tags #126

Merged
merged 31 commits into from
Nov 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
8da7597
ci: setup versioning
BioPhoton Oct 17, 2023
0d5b87c
refactor: add version targets and
BioPhoton Oct 17, 2023
4331fa7
refactor: add version targets and nx.json configurations
BioPhoton Oct 17, 2023
14b1dc7
docs: configure included messages
BioPhoton Oct 17, 2023
0b05b8f
refactor: fix depts
BioPhoton Oct 17, 2023
fce202f
refactor: reset change logs
BioPhoton Oct 17, 2023
16c7251
refactor: merge
BioPhoton Oct 17, 2023
2d31350
refactor: merge
BioPhoton Oct 17, 2023
658d12a
refactor: remove gh action
BioPhoton Oct 17, 2023
80654fc
refactor: pkg lock
BioPhoton Oct 22, 2023
c5afd3d
refactor: merge main
BioPhoton Nov 14, 2023
d7ab913
refactor: clean up 1
BioPhoton Nov 14, 2023
2cc3ea8
refactor: clean up 2
BioPhoton Nov 14, 2023
c127524
refactor: clean up 3
BioPhoton Nov 14, 2023
259f9ad
refactor: clean up 4
BioPhoton Nov 14, 2023
ceedce2
refactor: clean up 5
BioPhoton Nov 14, 2023
521afe7
refactor: clean up 6
BioPhoton Nov 14, 2023
fd7f099
refactor: add github target and github action
BioPhoton Nov 15, 2023
8f39eab
refactor: merge main
BioPhoton Nov 15, 2023
290d8a5
refactor: merge main
BioPhoton Nov 15, 2023
b04e9a9
refactor: merge main
BioPhoton Nov 15, 2023
1e486f8
refactor: wip
BioPhoton Nov 15, 2023
d7e9746
refactor: remove action
BioPhoton Nov 15, 2023
1219e6a
refactor: remove action
BioPhoton Nov 15, 2023
e7e6e82
refactor: add version target defaults
BioPhoton Nov 15, 2023
c7ae4b8
refactor: add version target defaults
BioPhoton Nov 15, 2023
17943f5
refactor: add version target defaults
BioPhoton Nov 15, 2023
3acc6d0
refactor: remove file
BioPhoton Nov 15, 2023
32dae65
refactor: remove unused package
BioPhoton Nov 16, 2023
78d8154
refactor: revert
BioPhoton Nov 16, 2023
14e228c
refactor: reduce config options for version target
BioPhoton Nov 16, 2023
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
6 changes: 3 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@

.env

# workspace caches
.nx

# compiled output
dist
tmp
Expand Down Expand Up @@ -46,3 +43,6 @@ Thumbs.db

# generated Code PushUp reports
/.code-pushup

# workspace caches
.nx
26 changes: 26 additions & 0 deletions nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,32 @@
"e2e": {
"dependsOn": ["^build"],
"inputs": ["default", "^production"]
},
"version": {
"dependsOn": ["^build"],
"inputs": ["production", "^production"],
"executor": "@jscutlery/semver:version",
"options": {
"commitMessageFormat": "release(${projectName}): ${version}",
"tagPrefix": "{projectName}@",
"preset": {
"name": "conventionalcommits",
"types": [
{ "type": "feat", "section": "Features" },
BioPhoton marked this conversation as resolved.
Show resolved Hide resolved
{ "type": "fix", "section": "Bug Fixes" },
{ "type": "build", "section": "Dependency updates" },
{ "type": "docs", "section": "Documentation" },
{ "type": "refactor", "section": "Code Refactoring" },
{ "type": "perf", "section": "Performance Improvements" }
]
}
}
},
"github": {
"executor": "@jscutlery/semver:github",
"options": {
"tag": "${tag}"
}
}
},
"namedInputs": {
Expand Down
Loading