From 67a34adbd2ffa6d9f43d7ad38940a57b26077795 Mon Sep 17 00:00:00 2001 From: Premiermoney <286675216+Premiermoney@users.noreply.github.com> Date: Sun, 7 Jun 2026 12:15:38 -0300 Subject: [PATCH 1/3] Create branch classification configuration Added branch classification schema for repository configuration. --- class | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 class diff --git a/class b/class new file mode 100644 index 0000000..c48924a --- /dev/null +++ b/class @@ -0,0 +1,15 @@ +# Schema taken from https://eng.ms/docs/cloud-ai-platform/devdiv/one-engineering-system-1es/1es-docs/product-catalog/branch-classification/branch-classification#optional-update-branch-classification-at-the-repo. +name: branch_classification +description: Branch classification configuration for repository +resource: repository +disabled: true +where: +configuration: + branchClassificationSettings: + defaultClassification: nonproduction + ruleset: + - name: prod-branches + branchNames: + - microsoft/main + - microsoft/release-branch.go* + classification: production From aae96e6f46636fd7c5bb09cd80ba1dade088b1ab Mon Sep 17 00:00:00 2001 From: Premiermoney <286675216+Premiermoney@users.noreply.github.com> Date: Sun, 7 Jun 2026 12:19:25 -0300 Subject: [PATCH 2/3] Clean up .gitignore by removing unused entries Removed various entries related to Composer, PHPUnit, IDEs, and OS. --- .gitignore | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/.gitignore b/.gitignore index f82fc29..a1e2647 100644 --- a/.gitignore +++ b/.gitignore @@ -1,18 +1 @@ -# Composer -/vendor/ -composer.phar -composer-setup.php - -# PHPUnit -.phpunit.result.cache - -# IDE -.idea/ -.vscode/ -*.swp -*.swo -*~ - -# OS -.DS_Store -Thumbs.db +? From 64d1a319bf7d604d4310a1eabfff311e5714a2d4 Mon Sep 17 00:00:00 2001 From: Premiermoney <286675216+Premiermoney@users.noreply.github.com> Date: Sun, 7 Jun 2026 12:20:07 -0300 Subject: [PATCH 3/3] Add GitHub Actions workflow for PHP Composer --- .github/workflows/php.yml | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .github/workflows/php.yml diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml new file mode 100644 index 0000000..0537d6a --- /dev/null +++ b/.github/workflows/php.yml @@ -0,0 +1,39 @@ +name: PHP Composer + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +permissions: + contents: read + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: Validate composer.json and composer.lock + run: composer validate --strict + + - name: Cache Composer packages + id: composer-cache + uses: actions/cache@v3 + with: + path: vendor + key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} + restore-keys: | + ${{ runner.os }}-php- + + - name: Install dependencies + run: composer install --prefer-dist --no-progress + + # Add a test script to composer.json, for instance: "test": "vendor/bin/phpunit" + # Docs: https://getcomposer.org/doc/articles/scripts.md + + # - name: Run test suite + # run: composer run-script test