From 8907bfa4aab5147754588c668ffaffc64f7c8f2d Mon Sep 17 00:00:00 2001 From: "Aaron (\"AJ\") Steers" Date: Fri, 20 Jan 2023 17:10:32 -0800 Subject: [PATCH] feat: shared global Semantic PR config for MeltanoLabs --- .github/semantic.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/semantic.yml diff --git a/.github/semantic.yml b/.github/semantic.yml new file mode 100644 index 0000000..fe29f08 --- /dev/null +++ b/.github/semantic.yml @@ -0,0 +1,28 @@ +# This is a default config file for the Semantic PRs GitHub App for the MeltanoLabs GitHub org. +# +# Notes: +# +# - Config syntax: https://github.com/Ezard/semantic-prs +# - If a repo has their own `semantic.yml` config file, that file will be used instead of this one. +# - See https://github.com/Ezard/semantic-prs/issues/227 for more info. + +# Validate the PR title, and ignore all commit messages +titleOnly: true + +# Provides a custom URL for the "Details" link, which appears next to the success/failure message from the app: +targetUrl: https://sdk.meltano.com/en/latest/CONTRIBUTING.html#semantic-pull-requests + +# The values allowed for the "type" part of the PR title/commit message. +# e.g. for a PR title/commit message of "feat: add some stuff", the type would be "feat" +types: + - ci + - chore + - build + - docs + - feat + - fix + - perf + - refactor + - revert + - style + - test