From f342627125b42d5912f0ff3d85056e893c85f4b0 Mon Sep 17 00:00:00 2001 From: theobenoit Date: Sat, 9 Apr 2022 01:00:22 +0200 Subject: [PATCH] add issues & pr templates --- .github/ISSUE_TEMPLATE/BUG_REPORT.md | 39 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/DOCUMENTATION.md | 30 +++++++++++++++++ .github/ISSUE_TEMPLATE/FEATURE_REQUEST.md | 20 ++++++++++++ .github/PULL_REQUEST_TEMPLATE.MD | 34 ++++++++++++++++++++ 4 files changed, 123 insertions(+) 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/PULL_REQUEST_TEMPLATE.MD diff --git a/.github/ISSUE_TEMPLATE/BUG_REPORT.md b/.github/ISSUE_TEMPLATE/BUG_REPORT.md new file mode 100644 index 0000000..9c611b1 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/BUG_REPORT.md @@ -0,0 +1,39 @@ +--- +name: "🐞 Rapport de bug" +about: CrĂ©ez un rapport de bug +title: '' +labels: ['bug', 'status:Unconfirmed'] +assignees: 'Androlax2' + +--- + + + +## Description + + +## Comportement attendu + + +## Comportement rĂ©el + + +## Correction possible + + +## Étapes Ă  reproduire + +1. +2. +3. +4. + +## Contexte + + +## Votre environnement + +* Version utilisĂ©e : +* Nom et version de l'environnement (par exemple, Chrome 39, node.js 5.4) : +* SystĂšme d'exploitation et version (bureau ou mobile) : +* Lien vers votre projet : diff --git a/.github/ISSUE_TEMPLATE/DOCUMENTATION.md b/.github/ISSUE_TEMPLATE/DOCUMENTATION.md new file mode 100644 index 0000000..168ffef --- /dev/null +++ b/.github/ISSUE_TEMPLATE/DOCUMENTATION.md @@ -0,0 +1,30 @@ +--- +name: "📚 Documentation" +about: SuggĂ©rer des modifications pour la documentation. +title: '' +labels: 'documentation' +assignees: 'Androlax2' + +--- + + + +### Section pertinente de la documentation. + + + +### DĂ©tails + + + +(Écrivez votre rĂ©ponse ici.) + + diff --git a/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md b/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md new file mode 100644 index 0000000..2218061 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md @@ -0,0 +1,20 @@ +--- +name: "🚀 Demande de fonctionnalitĂ©" +about: SuggĂ©rer une idĂ©e pour amĂ©liorer le produit. +title: '' +labels: 'enhancement' +assignees: 'Androlax2' + +--- + + + +## Description dĂ©taillĂ©e + + +## Contexte + + + +## Mise en Ɠuvre possible + diff --git a/.github/PULL_REQUEST_TEMPLATE.MD b/.github/PULL_REQUEST_TEMPLATE.MD new file mode 100644 index 0000000..1ef6b76 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.MD @@ -0,0 +1,34 @@ + + +## Description + + +## Motivation et contexte + + + +## Comment cela a-t-il Ă©tĂ© testĂ© ? + + + + +## Captures d'Ă©cran (le cas Ă©chĂ©ant) : + +## Types de changements + +- [ ] Correction de bug (changement non cassant qui corrige un problĂšme). +- [ ] Nouvelle fonctionnalitĂ© (changement non cassant qui ajoute une fonctionnalitĂ©) +- [ ] Breaking change (correction ou fonctionnalitĂ© qui entraĂźnerait un changement des fonctionnalitĂ©s existante) + +## Liste de contrĂŽle : + + +- [ ] Mon code suit le style de code de ce projet. +- [ ] Mon changement nĂ©cessite une modification de la documentation. +- [ ] J'ai mis Ă  jour la documentation en consĂ©quence. +- [ ] J'ai linter mon code + - [ ] composer lint + - [ ] yarn eslint + - [ ] yarn stylelint +- [ ] J'ai ajoutĂ© des tests pour couvrir mes changements. +- [ ] Tous les tests nouveaux et existants sont passĂ©s.