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 62b543e372085b0adc8edad0f1edfef57fd59325 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 21 Aug 2026 14:39:58 +0000 Subject: [PATCH 2/2] Bump nanoid from 3.3.11 to 3.3.18 in /frontend Bumps [nanoid](https://github.com/ai/nanoid) from 3.3.11 to 3.3.18. - [Release notes](https://github.com/ai/nanoid/releases) - [Changelog](https://github.com/ai/nanoid/blob/3.3.18/CHANGELOG.md) - [Commits](https://github.com/ai/nanoid/compare/3.3.11...3.3.18) --- updated-dependencies: - dependency-name: nanoid dependency-version: 3.3.18 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 ce931ca..2170cd7 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -12346,9 +12346,9 @@ "license": "MIT" }, "node_modules/nanoid": { - "version": "3.3.11", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", - "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", + "version": "3.3.18", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.18.tgz", + "integrity": "sha512-DTg4MJbGMWkfi6VZFdNt2/caMbQy4Ou+Op/hJQvGEWcnVfoA1QA+xzRKAzw9jD6+GVOOeYr/mIcuDSdug6F6+w==", "funding": [ { "type": "github",