Compare commits

...

26 Commits

Author SHA1 Message Date
2177a3ef9c perf(): more sv testing
Some checks failed
continuous-integration/drone/push Build is failing
2021-09-12 13:17:39 +02:00
015d654aec perf(): more sv testing
Some checks failed
continuous-integration/drone/push Build is failing
2021-09-12 13:17:23 +02:00
b9972c3ec1 perf(): more sv testing
All checks were successful
continuous-integration/drone/push Build is passing
2021-09-12 13:17:01 +02:00
956a929957 perf(): more sv testing
Some checks failed
continuous-integration/drone/push Build is failing
2021-09-12 13:16:31 +02:00
37e2f780ab perf(): more sv testing
Some checks failed
continuous-integration/drone/push Build is failing
2021-09-12 13:11:50 +02:00
0eea374097 perf(): more sv testing
Some checks failed
continuous-integration/drone/push Build is failing
2021-09-12 13:10:43 +02:00
f3e8825642 perf(): more sv testing
Some checks failed
continuous-integration/drone/push Build is failing
2021-09-12 13:09:58 +02:00
9811880a3e perf(): more sv testing
Some checks failed
continuous-integration/drone/push Build is failing
2021-09-12 13:08:38 +02:00
7400795412 perf(): more sv testing
Some checks failed
continuous-integration/drone/push Build is failing
2021-09-12 13:05:41 +02:00
ff78b21b7e perf(): more sv testing
Some checks failed
continuous-integration/drone/push Build is failing
2021-09-12 12:58:59 +02:00
108d0b2164 perf(): testing sv
Some checks failed
continuous-integration/drone/push Build is failing
2021-09-12 12:37:57 +02:00
84830d370d perf(): testing sv
Some checks failed
continuous-integration/drone/push Build is failing
2021-09-12 12:35:13 +02:00
ac70dc501c perf(): testing sv 2021-09-12 12:34:46 +02:00
14713dbedc chore(release): 1.0.3 [skip ci]
All checks were successful
continuous-integration/drone/tag Build is passing
## [1.0.3](https://git.sthope.dev/sthope/gitea_templates/compare/v1.0.2...v1.0.3) (2021-09-12)

### Performance Improvements

* testing sv ([2b9b099](2b9b0992aa))
* testing sv ([b22c8ae](b22c8ae060))
2021-09-12 10:33:39 +00:00
2b9b0992aa perf(): testing sv
All checks were successful
continuous-integration/drone/push Build is passing
2021-09-12 12:33:30 +02:00
b22c8ae060 perf(): testing sv
Some checks failed
continuous-integration/drone/push Build is failing
2021-09-12 12:27:30 +02:00
d3c5be76ea test(): removing badge template
All checks were successful
continuous-integration/drone/push Build is passing
2021-09-12 11:41:28 +02:00
c2a08c7c40 test(): removing badge template
All checks were successful
continuous-integration/drone/push Build is passing
2021-09-12 11:40:05 +02:00
f659b9d49d test(): badge json
All checks were successful
continuous-integration/drone/push Build is passing
2021-09-12 11:38:24 +02:00
92752c0ce6 test(): badge json
All checks were successful
continuous-integration/drone/push Build is passing
2021-09-12 11:38:01 +02:00
0311494d93 test(): badge json
All checks were successful
continuous-integration/drone/push Build is passing
2021-09-12 11:37:17 +02:00
62e4d5dc43 test(): badge json
All checks were successful
continuous-integration/drone/push Build is passing
2021-09-12 11:35:52 +02:00
bbcff7c1ba chore(release): 1.0.2 [skip ci]
All checks were successful
continuous-integration/drone/tag Build is passing
## [1.0.2](https://git.sthope.dev/sthope/gitea_templates/compare/v1.0.1...v1.0.2) (2021-09-11)

### Performance Improvements

* testing semantic release ([51ce62a](51ce62ab14))
* testing semantic release ([6549aaa](6549aaa0d2))
2021-09-11 13:37:58 +00:00
51ce62ab14 perf(): testing semantic release
All checks were successful
continuous-integration/drone/push Build is passing
2021-09-11 15:37:50 +02:00
c526742215 Merge branch 'master' of https://git.sthope.dev/sthope/gitea_templates
Some checks failed
continuous-integration/drone/push Build is failing
2021-09-11 15:37:17 +02:00
6549aaa0d2 perf(): testing semantic release 2021-09-11 15:37:12 +02:00
9 changed files with 176 additions and 144 deletions

View File

@ -2,26 +2,34 @@ kind: pipeline
type: docker
steps:
- name: markdownlint-cli
# - name: markdownlint-cli
# image: node:current-alpine
# commands:
# - npm install -g markdownlint-cli
# - markdownlint **/*.md
# - name: semantic-release
# image: cenk1cenk2/drone-semantic-release
# settings:
# mode: predict
# add_modules: "@saithodev/semantic-release-sharedconf-npm"
# semantic_release: true
# update_readme_toc: true
# use_local_rc: true
# git_method: cr
# git_user_name:
# from_secret: user_gitea
# git_user_email:
# from_secret: email_gitea
# git_login:
# from_secret: user_gitea
# git_password:
# from_secret: gitea_token
# update_docker_readme: false
- name: semver
image: node:current-alpine
commands:
- npm install -g markdownlint-cli
- markdownlint **/*.md
- name: semantic-release
image: cenk1cenk2/drone-semantic-release
settings:
semantic_release: true
update_readme_toc: true
use_local_rc: false
git_method: cr
git_user_name:
from_secret: user_gitea
git_user_email:
from_secret: email_gitea
git_login:
from_secret: user_gitea
git_password:
from_secret: gitea_token
update_docker_readme: false
- npm install semver
- semver

24
.releaserc.json Normal file
View File

@ -0,0 +1,24 @@
{
"extends": "@saithodev/semantic-release-sharedconf-npm",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/npm",
{"tarballDir": "release"}
],
[
"@semantic-release/git",
{"assets": ["package.json", "CHANGELOG.md"]}
],
[
"@semantic-release/github",
{"assets": "release/*.tgz"}
]
],
"branches": [
"master"
]
}

View File

@ -1,3 +1,19 @@
## [1.0.3](https://git.sthope.dev/sthope/gitea_templates/compare/v1.0.2...v1.0.3) (2021-09-12)
### Performance Improvements
* testing sv ([2b9b099](https://git.sthope.dev/sthope/gitea_templates/commit/2b9b0992aab0ce6b0d2a0cd7a274a906d9df579c))
* testing sv ([b22c8ae](https://git.sthope.dev/sthope/gitea_templates/commit/b22c8ae06067832c8901583e27a41216b2ebaf79))
## [1.0.2](https://git.sthope.dev/sthope/gitea_templates/compare/v1.0.1...v1.0.2) (2021-09-11)
### Performance Improvements
* testing semantic release ([51ce62a](https://git.sthope.dev/sthope/gitea_templates/commit/51ce62ab1464367aa2e728326c8eed9505423194))
* testing semantic release ([6549aaa](https://git.sthope.dev/sthope/gitea_templates/commit/6549aaa0d202ff24f4e98a2c2ddbee29c17ffa18))
## [1.0.1](https://git.sthope.dev/sthope/gitea_templates/compare/v1.0.0...v1.0.1) (2021-09-11)

View File

@ -1,7 +1,7 @@
[Português](./README-pt-PT.md)
[<img src="https://git.sthope.dev/sthope/.gitea/raw/branch/master/avatar-sthope.png" align="right" width="13%" height="13%">](https://www.sthope.dev/)
# Project_Name &middot; [![Build Status](https://img.shields.io/drone/build/sthope/DockerContainer-RandomPort?server=https%3A%2F%2Fdrone.sthope.dev&style=plastic)](../../..) [![MIT license](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=plastic&logo=appveyor)](LICENSE)
# Project_Name &middot; [![Build Status](https://img.shields.io/drone/build/sthope/DockerContainer-RandomPort?server=https%3A%2F%2Fdrone.sthope.dev&style=plastic)](../../..) [![MIT license](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=plastic&logo=gitea)](LICENSE)
> 🔥[Sthope](https://www.sthope.dev)

73
ols Normal file
View File

@ -0,0 +1,73 @@
release.config.js
---
branch: master
preset: "angular"
tagFormat: "${version}"
plugins:
- "@semantic-release/commit-analyzer"
- "@semantic-release/release-notes-generator"
- "@semantic-release/changelog"
- "@saithodev/semantic-release-gitea"
- "@saithodev/semantic-release-gitea"
verifyConditions:
- '@saithodev/semantic-release-gitea'
- "@saithodev/semantic-release-gitea"
analyzeCommits:
- path: "@semantic-release/commit-analyzer"
releaseRules:
- type: "feat"
release: "patch"
- type: "hotfix"
release: "patch"
- type: "patch"
release: "patch"
- type: "minor"
release: "minor"
- type: "breaking"
release: "major"
generateNotes:
- path: "@semantic-release/release-notes-generator"
writerOpts:
groupBy: "type"
commitGroupsSort:
- "feat"
- "perf"
- "fix"
commitsSort: "header"
types:
- type: "feat"
- section: "Features"
# Tracked bug fix with a hotfix branch
- type: "hotfix"
- section: "Bug Fixes"
# Uninmportent fix (CI testing, etc)
- type: "fix"
- hidden: true
- type: "chore"
- hidden: true
- type: "docs"
- hidden: true
- type: "doc"
- hidden: true
- type: "style"
- hidden: true
- type: "refactor"
- hidden: true
- type: "perf"
- hidden: true
- type: "test"
- hidden: true
presetConfig: true
prepare:
- path: "@saithodev/semantic-release-gitea"
- path: "@semantic-release/changelog"
changelogFile: "docs/CHANGELOG.md"
publish:
- path: "@saithodev/semantic-release-gitea"
success:
- "@saithodev/semantic-release-gitea"
fail:
- "@saithodev/semantic-release-gitea"

View File

@ -1,51 +0,0 @@
{
"name": "@semantic-release/gitlab",
"version": "1.0.1",
"main": "index.js",
"license": "MIT",
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
"@semantic-release/changelog",
"@semantic-release/git"
],
"branch": [
"master",
"next"
]
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.0.5",
"@semantic-release/release-notes-generator": "^9.0.1",
"@types/express": "^4.17.6",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"prettier": "^2.0.4",
"semantic-release": "^17.0.6",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.8.3"
},
"dependencies": {
"express": "^4.17.1"
},
"scripts": {
"build": "tsc",
"dev:server": "ts-node-dev --inspect --transpileOnly --ignore-watch node_modules src/server.ts"
}
}

View File

@ -1,72 +1,34 @@
---
branch: master
preset: "angular"
tagFormat: "${version}"
plugins:
- "@semantic-release/commit-analyzer"
- "@semantic-release/release-notes-generator"
- "@semantic-release/changelog"
- "@semantic-release/git"
- "@semantic-release/github"
verifyConditions:
- '@semantic-release/git'
- "@semantic-release/github"
analyzeCommits:
- path: "@semantic-release/commit-analyzer"
releaseRules:
- type: "feat"
release: "patch"
- type: "hotfix"
release: "patch"
- type: "patch"
release: "patch"
- type: "minor"
release: "minor"
- type: "breaking"
release: "major"
generateNotes:
- path: "@semantic-release/release-notes-generator"
writerOpts:
groupBy: "type"
commitGroupsSort:
- "feat"
- "perf"
- "fix"
commitsSort: "header"
types:
- type: "feat"
- section: "Features"
# Tracked bug fix with a hotfix branch
- type: "hotfix"
- section: "Bug Fixes"
# Uninmportent fix (CI testing, etc)
- type: "fix"
- hidden: true
- type: "chore"
- hidden: true
- type: "docs"
- hidden: true
- type: "doc"
- hidden: true
- type: "style"
- hidden: true
- type: "refactor"
- hidden: true
- type: "perf"
- hidden: true
- type: "test"
- hidden: true
presetConfig: true
prepare:
- path: "@semantic-release/git"
- path: "@semantic-release/changelog"
changelogFile: "docs/CHANGELOG.md"
publish:
- path: "@semantic-release/github"
success:
- "@semantic-release/github"
fail:
- "@semantic-release/github"
module.exports = {
"branches": [
"master",
{
"name": "alpha",
"prerelease": true
},
{
"name": "beta",
"prerelease": true
},
{
"name": "rc",
"prerelease": true
}
],
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/git"
],
"prepare": [
"@semantic-release/changelog",
{
"path": "@semantic-release/git",
"assets": [
"CHANGELOG.md",
process.env.README_LOCATION ? process.env.README_LOCATION : 'README.md' ,
"yarn.lock",
"npm-shrinkwrap.json"
],
"message": "chore(release): <%= nextRelease.version %> - <%= new Date().toISOString().slice(0,10).replace(/-/g,'') %> [skip ci]\n\n<%= nextRelease.notes %>"
}
]
}