ci(gitlab-ci): added gitlab CI v0.6.1rc0

issue #1
This commit is contained in:
2022-02-12 09:06:46 +09:30
commit 4a6f36d078
4 changed files with 54 additions and 0 deletions

7
.cz.yaml Normal file
View File

@ -0,0 +1,7 @@
commitizen:
bump_message: "build(version): bump version $current_version \u2192 $new_version"
changelog_incremental: false
name: cz_conventional_commits
tag_format: v$major.$minor.$patch$prerelease
update_changelog_on_bump: true
version: 0.0.1

42
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,42 @@
stages:
- validation
- build
- prepare
- test
- release
- sync
- publish
variables:
GIT_SUBMODULE_STRATEGY: recursive
MY_PROJECT_ID: "33611657"
include:
- project: nofusscomputing/projects/gitlab-ci
ref: ce1cc017e26ff7f6cee586cc7d98e4d292275672
file:
- conventional_commits/.gitlab-ci.yml
- validation/.gitlab-ci.yml
- gitlab_release/.gitlab-ci.yml
- git_push_mirror/.gitlab-ci.yml
Markdown Linting:
extends:
- .Lint_Markdown
Gitlab Release:
extends:
- .gitlab_release
Github (Push --mirror):
variables:
GIT_SYNC_URL: "https://$GITHUB_USERNAME_ROBOT:$GITHUB_TOKEN_ROBOT@github.com/NoFussComputing/docker-mail.git"
extends:
- .git_push_mirror

4
.gitmodules vendored Normal file
View File

@ -0,0 +1,4 @@
[submodule "gitlab-ci"]
path = gitlab-ci
url = https://gitlab.com/nofusscomputing/projects/gitlab-ci.git
branch = master

1
gitlab-ci Submodule

Submodule gitlab-ci added at ce1cc017e2