Skip to content

Commit

Permalink
Add Gitreleasemanager.yaml + update other ci configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
nmbro committed May 8, 2019
1 parent 5352394 commit 04dff83
Show file tree
Hide file tree
Showing 4 changed files with 65 additions and 2 deletions.
19 changes: 17 additions & 2 deletions .appveyor.yml
Expand Up @@ -9,9 +9,22 @@ image: Visual Studio 2017
build_script:
- ps: .\build.ps1 -Target AppVeyor

#---------------------------------#
# Tests
#---------------------------------#
test: off

#---------------------------------#
# Pull Requests #
#---------------------------------#
pull_requests:
do_not_increment_build_number: true

#---------------------------------#
# General #
#---------------------------------#
skip_branch_with_pr: true

#---------------------------------#
# Branches to build #
#---------------------------------#
Expand All @@ -20,16 +33,18 @@ branches:
only:
- develop
- master
- /release/.*/
- /hotfix/.*/

#---------------------------------#
# Build Cache #
#---------------------------------#
cache:
- tools -> recipe.cake
- tools -> recipe.cake, tools/packages.config

#---------------------------------#
# Skip builds for doc changes #
#---------------------------------#
skip_commits:
# Regex for matching commit message
message: /(doc).*/
message: /(doc).*/
23 changes: 23 additions & 0 deletions .editorconfig
@@ -0,0 +1,23 @@
; This file is for unifying the coding style for different editors and IDEs.
; More information at http://EditorConfig.org

root = true

[*]
end_of_line = CRLF

[*.ps1]
indent_style = space
indent_size = 4

[*.cs]
indent_style = space
indent_size = 4

[*.cake]
indent_style = space
indent_size = 4

[*.js]
indent_style = tab
indent_size = 2
9 changes: 9 additions & 0 deletions .gitattributes
@@ -0,0 +1,9 @@
# Set the default behavior, in case people don't have core.autocrlf set.
* text=auto

# Declare files that will always have CRLF line endings on checkout.
*.sln text eol=crlf

# Denote all files that are truly binary and should not be modified.
*.png binary
*.jpg binary
16 changes: 16 additions & 0 deletions GitReleaseManager.yaml
@@ -0,0 +1,16 @@
issue-labels-include:
- Breaking change
- Feature
- Bug
- Improvement
- Documentation
- security
issue-labels-exclude:
- Build
issue-labels-alias:
- name: Documentation
header: Documentation
plural: Documentation
- name: security
header: Security
plural: Security

0 comments on commit 04dff83

Please sign in to comment.