-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Bela Stoyan <[email protected]> Co-authored-by: Pavel Zwerschke <[email protected]>
- Loading branch information
1 parent
dc301c4
commit c09fcc0
Showing
18 changed files
with
3,762 additions
and
140 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Motivation | ||
|
||
<!-- Why is this change necessary? Link issues here if applicable. --> | ||
|
||
# Changes | ||
|
||
<!-- What changes have been performed? --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: github-actions | ||
directory: / | ||
schedule: | ||
interval: monthly | ||
reviewers: | ||
- quantco/ci | ||
groups: | ||
gh-actions: | ||
patterns: | ||
- "*" | ||
commit-message: | ||
prefix: ci | ||
- package-ecosystem: cargo | ||
directory: / | ||
schedule: | ||
interval: monthly | ||
groups: | ||
rust-dependencies: | ||
patterns: | ||
- "*" | ||
commit-message: | ||
prefix: build | ||
labels: | ||
- dependencies |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
# ------------------------------------- PULL REQUEST LABELS ------------------------------------- # | ||
autolabeler: | ||
# Conventional Commit Types (https://github.com/commitizen/conventional-commit-types) | ||
- label: build | ||
title: | ||
- '/^build(\(.*\))?(\!)?\:/' | ||
- label: chore | ||
title: | ||
- '/^chore(\(.*\))?(\!)?\:/' | ||
- label: ci | ||
title: | ||
- '/^ci(\(.*\))?(\!)?\:/' | ||
- label: documentation | ||
title: | ||
- '/^docs(\(.*\))?(\!)?\:/' | ||
- label: enhancement | ||
title: | ||
- '/^feat(\(.*\))?(\!)?\:/' | ||
- label: fix | ||
title: | ||
- '/^fix(\(.*\))?(\!)?\:/' | ||
- label: performance | ||
title: | ||
- '/^perf(\(.*\))?(\!)?\:/' | ||
- label: refactor | ||
title: | ||
- '/^refactor(\(.*\))?(\!)?\:/' | ||
- label: revert | ||
title: | ||
- '/^revert(\(.*\))?(\!)?\:/' | ||
- label: style | ||
title: | ||
- '/^style(\(.*\))?(\!)?\:/' | ||
- label: test | ||
title: | ||
- '/^test(\(.*\))?(\!)?\:/' | ||
# Custom Types | ||
- label: breaking | ||
title: | ||
- '/^[a-z]+(\(.*\))?\!\:/' | ||
# ------------------------------------ RELEASE CONFIGURATION ------------------------------------ # | ||
category-template: "### $TITLE" | ||
change-template: "- $TITLE by @$AUTHOR in [#$NUMBER]($URL)" | ||
replacers: | ||
# remove conventional commit tag & scope from change list | ||
- search: '/- [a-z]+(\(.*\))?(\!)?\: /g' | ||
replace: "- " | ||
template: | | ||
## What's Changed | ||
$CHANGES | ||
**Full Changelog:** [`$PREVIOUS_TAG...v$RESOLVED_VERSION`](https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...v$RESOLVED_VERSION) | ||
categories: | ||
- title: ⚠️ Breaking Changes | ||
labels: | ||
- breaking | ||
- title: ✨ New Features | ||
labels: | ||
- enhancement | ||
- title: 🐞 Bug Fixes | ||
labels: | ||
- fix | ||
- title: 🏎️ Performance Improvements | ||
labels: | ||
- performance | ||
- title: 📚 Documentation | ||
labels: | ||
- documentation | ||
- title: 🏗️ Testing | ||
labels: | ||
- test | ||
- title: ⚙️ Automation | ||
labels: | ||
- ci | ||
- title: 🛠 Builds | ||
labels: | ||
- build | ||
- title: 💎 Code Style | ||
labels: | ||
- style | ||
- title: 📦 Refactorings | ||
labels: | ||
- refactor | ||
- title: ♻️ Chores | ||
labels: | ||
- chore | ||
- title: 🗑 Reverts | ||
labels: | ||
- revert |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
exclude: ^env/ | ||
repos: | ||
- repo: local | ||
hooks: | ||
|
Oops, something went wrong.