diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..9d72dd3 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,2 @@ +* @Doble-Technologies/doble-technology-administration +* @Doble-Technologies/doble-technology-developement diff --git a/.github/configs/pr-labeler-configuration.yml b/.github/configs/pr-labeler-configuration.yml new file mode 100644 index 0000000..0e6a823 --- /dev/null +++ b/.github/configs/pr-labeler-configuration.yml @@ -0,0 +1,5 @@ +feature: feature/* +bugfix: bugfix/* +hotfix: hotfix/* +refactor: refactor/* +documentation: ['documentation/*', 'setup/*'] diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..cc5e77d --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,11 @@ +# Description + + +# Fixes an Issue Number - (Please Link issue/If not, delete Question) + + +## Type of change +- [ ] Bug fix (non-breaking change which fixes an issue) +- [ ] New feature (non-breaking change which adds functionality) +- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) +- [ ] This change requires a documentation update diff --git a/.github/workflows/pr-validation.yml b/.github/workflows/pr-validation.yml new file mode 100644 index 0000000..3797c32 --- /dev/null +++ b/.github/workflows/pr-validation.yml @@ -0,0 +1,19 @@ +name: PR Validation +on: + pull_request: + types: [opened] + +permissions: + contents: read + +jobs: + pr-validation: + permissions: + contents: read + pull-requests: write + runs-on: ['self-hosted', 'pi'] + steps: + - uses: TimonVS/pr-labeler-action@v5 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + configuration-path: .github/configs/pr-labeler-configuration.yml diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..049ce39 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2025 Doble Technologies + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE.