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 2fca1d4a901530e3f7602ad3b5f46ce7f6ca3c7b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Aug 2026 02:50:55 +0000 Subject: [PATCH 2/2] Bump ip-address from 10.1.0 to 10.5.0 in /frontend Bumps [ip-address](https://github.com/beaugunderson/ip-address) from 10.1.0 to 10.5.0. - [Release notes](https://github.com/beaugunderson/ip-address/releases) - [Commits](https://github.com/beaugunderson/ip-address/compare/v10.1.0...v10.5.0) --- updated-dependencies: - dependency-name: ip-address dependency-version: 10.5.0 dependency-type: indirect ... Signed-off-by: dependabot[bot] --- frontend/package-lock.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/package-lock.json b/frontend/package-lock.json index 6782dfa..b330fec 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -11222,9 +11222,9 @@ } }, "node_modules/ip-address": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-10.1.0.tgz", - "integrity": "sha512-XXADHxXmvT9+CRxhXg56LJovE+bmWnEWB78LB83VZTprKTmaC5QfruXocxzTZ2Kl0DNwKuBdlIhjL8LeY8Sf8Q==", + "version": "10.5.0", + "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-10.5.0.tgz", + "integrity": "sha512-R5SnVLJmgYYvf2F2ZgwSBnelz5G4q5AxIC277GDfUaNbrZKNANcBC7RHqYYePlszf4kBolVkJauG0ZjHHFh55g==", "license": "MIT", "engines": { "node": ">= 12"