From 446062b4d5af06a639e55a39e5c5c93e38c87446 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christina=20S=C3=B8rensen?= Date: Fri, 25 Aug 2023 12:05:23 +0200 Subject: [PATCH 1/2] ci(git): add codeowners MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Christina Sørensen --- .github/CODEOWNERS | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 000000000..0fe7dab42 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,40 @@ +# Lines starting with a '#' are comments. +# Each line is a file pattern followed by one or more owners. + +# These owners will be the default owners for everything in the repository. +# * @global-owner1 @global-owner2 + +# The 'docs/*' pattern will match files like +# 'docs/getting-started.md' but not further nested files like +# 'docs/build-app/troubleshooting.md'. +# docs/* @doc-owner-team + +# You can also use email addresses if the user isn't on GitHub. +# *.py admin@example.com + +# You can use a '*' at the end of a pattern to match all files +# of a particular type. +# *.* @all-file-types-owner + +# Order is important. The last matching pattern has the most precedence. +# This means if a pull request touches both *.js and *.css files, +# it will only request a review from @js-owner, not @css-owner. +# *.js @js-owner +# *.css @css-owner + +# Nix files +*.nix @cafkafk + +# Documentation +*.md @cafkafk + +# Configuration +*.toml @cafkafk + +# Version bumps +Cargo.lock @cafkafk + +# Testing, builds, etc +devtools/* @cafkafk +tests/* @cafkafk +xtests/* @cafkafk From de2b47db8da3864f508b6bf11b4d681f9554c776 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christina=20S=C3=B8rensen?= Date: Fri, 25 Aug 2023 12:11:04 +0200 Subject: [PATCH 2/2] ci(debian): add gierens as .deb codeowner MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Christina Sørensen --- .github/CODEOWNERS | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 0fe7dab42..f961f13ef 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -38,3 +38,7 @@ Cargo.lock @cafkafk devtools/* @cafkafk tests/* @cafkafk xtests/* @cafkafk + +# Debian files +devtools/deb-package.sh @gierens +deb.asc @gierens