-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGitVersioniser.yml
72 lines (69 loc) · 2.27 KB
/
GitVersioniser.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
name: GitVersioniser
on:
push:
branches:
- main
- master
jobs:
repository_versioning:
runs-on: ubuntu-latest
name: Repository Versioning via GitVersioniser
steps:
- name: Repository Checkout
uses: actions/checkout@v3
with:
path: target_repository
fetch-depth: 0
- name: Running GitVersioniser
id: GitVersioniser
uses: luzkan/GitVersioniser@v0
with:
# ===========================
# Credentials
# ---------------------------
# Versioniser Git Credentials
# ----
versioniser_username: "GitVersioniser"
versioniser_email: "luzkan.gitversioniser@github.com"
# ===========================
# Patterns
# ---------------------------
# Increment Tags
# ----
commit_pattern_increment_tags: "HashtagExplicit"
# ---------------------------
# Change Tags
# ----
commit_pattern_change_tags: "All"
# ===========================
# Routines
# ---------------------------
# Versioning
# ----
routine_version: "VersionTagInCommitsTillLastGitVersioniserCommit"
# ---------------------------
# Contributing
# ----
routine_should_contribute: "IfNewVersionIsBuildOrHigher"
routine_commiting: "PushOriginAmend"
# ---------------------------
# Commit Message
# ----
routine_commit_message_describe_changes: "WithEmoji"
routine_commit_message_format_version_tag: "FullButOnlyDigits"
routine_commit_message_place_version_tag: "Prefix"
routine_commit_message_summarize_changes: "WithEmojiCounted"
# ---------------------------
# Tagging
# ----
routine_tagging: "Regular"
routine_prefix_tag_with_v: "Always"
# ---------------------------
# Changelog Handling
# -----
routine_changelog: "CommitChangeTags"
# ---------------------------
# File Versioning
# ----
routine_file_updater: "VersioniseFiles"
versioned_files: ""