From 4d7d7f96ba6189c4a0059fbc0485be2356b0d0cc Mon Sep 17 00:00:00 2001 From: preritab <140844277+preritab@users.noreply.github.com> Date: Sat, 7 Feb 2026 18:00:51 -0600 Subject: [PATCH 1/2] github action setup (#91) Co-authored-by: Ryan Polasky --- .github/workflows/branch-deploy.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/branch-deploy.yaml diff --git a/.github/workflows/branch-deploy.yaml b/.github/workflows/branch-deploy.yaml new file mode 100644 index 0000000..1772ef9 --- /dev/null +++ b/.github/workflows/branch-deploy.yaml @@ -0,0 +1,22 @@ +name: Branch Webhook Trigger + +on: + push: + branches: + - main + - develop + +jobs: + notify: + runs-on: ubuntu-latest + + steps: + - name: Trigger branch-specific webhook + run: | + BRANCH_NAME="${GITHUB_REF##*/}" + + if [ "$BRANCH_NAME" = "main" ]; then + curl -f -X POST "${{ secrets.MAIN_WEBHOOK_URL }}" || exit 1 + elif [ "$BRANCH_NAME" = "develop" ]; then + curl -f -X POST "${{ secrets.DEVELOP_WEBHOOK_URL }}" || exit 1 + fi \ No newline at end of file From 904dacf11d6081f83f264ff2c2ed2f8356fef0c8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Aug 2026 02:50:31 +0000 Subject: [PATCH 2/2] Bump fast-xml-builder from 1.0.0 to 1.3.1 in /frontend Bumps [fast-xml-builder](https://github.com/NaturalIntelligence/fast-xml-builder) from 1.0.0 to 1.3.1. - [Release notes](https://github.com/NaturalIntelligence/fast-xml-builder/releases) - [Changelog](https://github.com/NaturalIntelligence/fast-xml-builder/blob/main/CHANGELOG.md) - [Commits](https://github.com/NaturalIntelligence/fast-xml-builder/commits/v1.3.1) --- updated-dependencies: - dependency-name: fast-xml-builder dependency-version: 1.3.1 dependency-type: indirect ... Signed-off-by: dependabot[bot] --- frontend/package-lock.json | 44 ++++++++++++++++++++++++++++++++++---- 1 file changed, 40 insertions(+), 4 deletions(-) diff --git a/frontend/package-lock.json b/frontend/package-lock.json index 6782dfa..143a170 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -10083,9 +10083,9 @@ "license": "MIT" }, "node_modules/fast-xml-builder": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fast-xml-builder/-/fast-xml-builder-1.0.0.tgz", - "integrity": "sha512-fpZuDogrAgnyt9oDDz+5DBz0zgPdPZz6D4IR7iESxRXElrlGTRkHJ9eEt+SACRJwT0FNFrt71DFQIUFBJfX/uQ==", + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/fast-xml-builder/-/fast-xml-builder-1.3.1.tgz", + "integrity": "sha512-pIM/1n3ntFXKYrUZwW7QCK0gAW7XY+wzj1YMIV3tLDvPj/V+zTGJK5e3/4WJfwj0qWw2ElNXiTixda/R+3YSug==", "funding": [ { "type": "github", @@ -10093,7 +10093,11 @@ } ], "license": "MIT", - "optional": true + "optional": true, + "dependencies": { + "path-expression-matcher": "^1.6.2", + "xml-naming": "^0.3.0" + } }, "node_modules/fast-xml-parser": { "version": "5.4.1", @@ -13371,6 +13375,22 @@ "node": ">=8" } }, + "node_modules/path-expression-matcher": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/path-expression-matcher/-/path-expression-matcher-1.6.2.tgz", + "integrity": "sha512-enSlaiat05iasnzmgNxRj8reFdj3puY2QpNgP1aPIaVfT6nn9ICuPoFlKHk8EN22HcwewshO+mN2DGbkCEOtqQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/NaturalIntelligence" + } + ], + "license": "MIT", + "optional": true, + "engines": { + "node": ">=14.0.0" + } + }, "node_modules/path-key": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", @@ -16312,6 +16332,22 @@ "node": ">= 6.0" } }, + "node_modules/xml-naming": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/xml-naming/-/xml-naming-0.3.0.tgz", + "integrity": "sha512-ghig2TBE/H11aOVgmahA3MhimvkBr6JIYknH/Dhdk10nXwdbIqBJsbfMxpvFPG8bAw77gN29aQWvKpmVoPlvPQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/NaturalIntelligence" + } + ], + "license": "MIT", + "optional": true, + "engines": { + "node": ">=16.0.0" + } + }, "node_modules/xmlhttprequest-ssl": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-2.1.2.tgz",