From a6400eb9ecf3d70dd0774edeaaa9549342828511 Mon Sep 17 00:00:00 2001 From: Damien Retzinger Date: Sat, 25 Jun 2022 09:59:11 -0400 Subject: [PATCH] init repo --- .github/CODEOWNERS | 66 +++++++++++++++++++++ .github/FUNDING.yml | 3 + .github/ISSUE_TEMPLATE/bug_report.md | 42 +++++++++++++ .github/ISSUE_TEMPLATE/documentation.md | 37 ++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 42 +++++++++++++ .github/ISSUE_TEMPLATE/other.md | 28 +++++++++ .github/ISSUE_TEMPLATE/performance_issue.md | 42 +++++++++++++ .github/PULL_REQUEST_TEMPLATE.md | 42 +++++++++++++ 8 files changed, 302 insertions(+) create mode 100644 .github/CODEOWNERS create mode 100644 .github/FUNDING.yml create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/documentation.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md create mode 100644 .github/ISSUE_TEMPLATE/other.md create mode 100644 .github/ISSUE_TEMPLATE/performance_issue.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..af0b5cc --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,66 @@ +# $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ +# $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ +# $$ Magento 2 GitHub Actions Code Owners $$ +# $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ +# $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ +# +# The configuration for Code Owners for graycoreio/magento2-github-actions. +# +# For more info see: https://help.github.com/articles/about-codeowners/ +# + + +# ================================================ +# Concepts +# ================================================ +# +# 1. A CodeOwner should only review what they are comfortable reviewing. If you're not comfortable, say something. +# 2. It is a CodeOwners responsibility to only accept the changes that they understand and deem necessary. +# 3. The CodeOwners have final say on whether or not code is accepted. +# 4. If multiple CodeOwners are listed, ALL code owners must approve the PR prior to merge. +# 5. CodeOwners work in conjunction with Github's "Number of Required Approvals (1)" requirement. + + +# ================================================ +# GitHub username registry +# ================================================ + +# damienwebdev - Damien Retzinger + + + +###################################################################################################### +# +# Team structure and memberships +# ------------------------------ +# +# +# Any changes to team structure or memberships must first be made in this file and only then +# implemented in the GitHub UI. +####################################################################################################### + + +###################################################################################################### +# +# CODEOWNERS rules +# ----------------- +# +# All the following rules are applied in the order specified in this file. +# The last rule that matches wins! +# +# See https://git-scm.com/docs/gitignore#_pattern_format for pattern syntax docs. +# +###################################################################################################### + + +# ================================================ +# Default Owners +# ================================================ + +* @damienwebdev + +# ================================================ +# CODEOWNERS Owners owners ... +# ================================================ + +/.github/CODEOWNERS @damienwebdev diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..8432a04 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,3 @@ +# These are supported funding model platforms + +github: graycoreio \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..17b4c61 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,42 @@ +--- +name: Bug report or Regression +about: Create a report to help us fix an issue or regression +title: '[BUG]' +labels: 'bug' +assignees: 'damienwebdev' +--- + + + +# :bug: Bug report + +## Current Behavior + + + +## Expected Behavior + + + +## Minimal reproduction of the problem with instructions + + + +## What is the motivation / use case for changing the behavior? + + + +## Environment + +

+Magento version: X.Y.Z 
+PHP Version version: X.Y.Z 
+
+
+Others:
+
+
\ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/documentation.md b/.github/ISSUE_TEMPLATE/documentation.md new file mode 100644 index 0000000..a9a75ed --- /dev/null +++ b/.github/ISSUE_TEMPLATE/documentation.md @@ -0,0 +1,37 @@ +--- +name: Documentation Request +about: Request additional documentation or clarification on a feature. +title: '[DOCS]' +labels: 'docs' +assignees: 'damienwebdev' +--- + + + +# :page_facing_up: Documentation Request + +## What were you doing? + + + +## Expected behavior + + + +## Existing Documentation + + +## Environment + +

+Magento version: X.Y.Z 
+PHP Version version: X.Y.Z 
+
+
+Others:
+
+
\ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..3879f6c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,42 @@ +--- +name: Feature Request +about: Ask for a new feature, or something that you'd like to see changed. +title: '[FEAT]' +labels: 'feat' +assignees: 'damienwebdev' +--- + + + +# :bulb: Feature request + +## Feature Name + + + +## The Desired Behavior + + + +## Your Use Case + + + +## Prior Work + + + +## Environment + +

+Magento version: X.Y.Z 
+PHP Version version: X.Y.Z 
+
+
+Others:
+
+
\ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/other.md b/.github/ISSUE_TEMPLATE/other.md new file mode 100644 index 0000000..21be9ec --- /dev/null +++ b/.github/ISSUE_TEMPLATE/other.md @@ -0,0 +1,28 @@ +--- +name: Other +about: Report a general issue that isn't covered by other issue templates. +title: '[OTHER]' +labels: '' +assignees: '' +--- + + + +# :question: Other + + + +## Environment + +

+Magento version: X.Y.Z 
+PHP Version version: X.Y.Z 
+
+
+Others:
+
+
\ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/performance_issue.md b/.github/ISSUE_TEMPLATE/performance_issue.md new file mode 100644 index 0000000..6fcff87 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/performance_issue.md @@ -0,0 +1,42 @@ +--- +name: Performance Issue +about: Create a report about a performance problem. +title: '[PERF]' +labels: 'perf' +assignees: 'damienwebdev' +--- + + + +# :turtle: Performance Issue + +## Current behavior + + + +## Expected behavior + + + +## Minimal reproduction of the problem with instructions + + + +## What is the motivation / use case for changing the behavior? + + + +## Environment + +

+Magento version: X.Y.Z 
+PHP Version version: X.Y.Z 
+
+
+Others:
+
+
\ No newline at end of file diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..09c7bfc --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,42 @@ +## PR Checklist +Please check if your PR fulfills the following requirements: + +- [ ] The commit message follows our guidelines: https://github.com/graycoreio/magento2-github-actions/blob/master/CONTRIBUTING.md#commit +- [ ] Tests for the changes have been added (for bug fixes / features) +- [ ] Docs have been added / updated (for bug fixes / features) + + +## PR Type +What kind of change does this PR introduce? + + +``` +[ ] Bugfix +[ ] Feature +[ ] Code style update (formatting, local variables) +[ ] Refactoring (no functional changes, no api changes) +[ ] Build related changes +[ ] CI related changes +[ ] Documentation content changes +[ ] Other... Please describe: +``` + +## What is the current behavior? + + +Fixes: N/A + + +## What is the new behavior? + + +## Does this PR introduce a breaking change? +``` +[ ] Yes +[ ] No +``` + + + + +## Other information \ No newline at end of file