diff --git a/.github/PULL_REQUEST_TEMPLATE.yml b/.github/PULL_REQUEST_TEMPLATE.yml new file mode 100644 index 00000000..9cd514fa --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.yml @@ -0,0 +1,23 @@ +## Self-Checks +- [ ] I have performed a self-review of my code. +- [ ] I have updated/added necessary technical documentation in the [README](/README.md) file. + +## Summary + + +## QA Checklist Labels +- [ ] Bug fix? +- [ ] New feature? +- [ ] Improvement? +- [ ] Technical debt? +- [ ] Reusable? +- [ ] Covered by tests? + +## QA Checklist + + + ## Additional Context + + + ## Frontend Changes + \ No newline at end of file diff --git a/.github/workflows/PULL_REQUEST_LABELS.yml b/.github/workflows/PULL_REQUEST_LABELS.yml new file mode 100644 index 00000000..3912c210 --- /dev/null +++ b/.github/workflows/PULL_REQUEST_LABELS.yml @@ -0,0 +1,10 @@ +name: Apply Labels Based on PR Template + +on: + pull_request: + types: [opened, edited] + +jobs: + label-management: + uses: Invertus/github-templates/.github/workflows/label-management.yml@v1.0.2 + secrets: inherit \ No newline at end of file diff --git a/.github/workflows/PULL_REQUEST_NAMING_RULES.yml b/.github/workflows/PULL_REQUEST_NAMING_RULES.yml new file mode 100644 index 00000000..96b84b8b --- /dev/null +++ b/.github/workflows/PULL_REQUEST_NAMING_RULES.yml @@ -0,0 +1,12 @@ +name: Names rules + +on: [pull_request, workflow_dispatch] + +jobs: + branch-name-check: + uses: Invertus/github-templates/.github/workflows/branch-name-check.yml@v1.0.2 + secrets: inherit + + pr-title-check: + uses: Invertus/github-templates/.github/workflows/pr-title-check.yml@v1.0.2 + secrets: inherit \ No newline at end of file