From dfd9bffea09d76fbd35c94b6c1e1228ada3e63c6 Mon Sep 17 00:00:00 2001 From: faheelsattar Date: Wed, 1 Jan 2025 15:31:16 +0500 Subject: [PATCH 1/3] upd link --- frontend/src/styles/header.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/styles/header.ts b/frontend/src/styles/header.ts index 0958641..850f4c1 100644 --- a/frontend/src/styles/header.ts +++ b/frontend/src/styles/header.ts @@ -53,7 +53,7 @@ export const NavIcon = styled.img.attrs({ export const ScheduleDemo = styled.a.attrs({ className: 'shedule-a-demo-button', - href: "mailto:contact@shutter.network?subject=Schedule%20a%20Demo", + href: "https://calendly.com/loringharkness/30min", target: '_blank', })` background-color: #fde12d; From 7a5385975e04417425b44cae1b781c029a5ba9d0 Mon Sep 17 00:00:00 2001 From: faheelsattar Date: Wed, 1 Jan 2025 15:40:07 +0500 Subject: [PATCH 2/3] upd workflow --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 726d7e1..b2a7f8d 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -52,7 +52,7 @@ jobs: fi # Check if the branch name starts with the expected prefixes - if [[ "$BRANCH_NAME" == release/* ]] || [[ "$BRANCH_NAME" == feat/* ]] || [[ "$BRANCH_NAME" == fix/* ]] || [[ "$BRANCH_NAME" == chore/* ]] || [[ "$BRANCH_NAME" == docs/* ]] || [[ "$BRANCH_NAME" == test/* ]]; then + if [[ "$BRANCH_NAME" == release/* ]] || [[ "$BRANCH_NAME" == feat/* ]] || [[ "$BRANCH_NAME" == fix/* ]] || [[ "$BRANCH_NAME" == chore/* ]] || [[ "$BRANCH_NAME" == docs/* ]] || [[ "$BRANCH_NAME" == test/* ]] || [[ "$BRANCH_NAME" == refactor/* ]]; then echo "Branch name is valid: $BRANCH_NAME" else echo "Error: Branch name must start with 'release/', 'feat/', 'fix/', 'chore/', 'docs/', or 'test/'." From d60c0c2884c8c860f276310381b50c247a5f0791 Mon Sep 17 00:00:00 2001 From: faheelsattar Date: Wed, 1 Jan 2025 15:42:45 +0500 Subject: [PATCH 3/3] upd workflow --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index b2a7f8d..4aa9205 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -55,7 +55,7 @@ jobs: if [[ "$BRANCH_NAME" == release/* ]] || [[ "$BRANCH_NAME" == feat/* ]] || [[ "$BRANCH_NAME" == fix/* ]] || [[ "$BRANCH_NAME" == chore/* ]] || [[ "$BRANCH_NAME" == docs/* ]] || [[ "$BRANCH_NAME" == test/* ]] || [[ "$BRANCH_NAME" == refactor/* ]]; then echo "Branch name is valid: $BRANCH_NAME" else - echo "Error: Branch name must start with 'release/', 'feat/', 'fix/', 'chore/', 'docs/', or 'test/'." + echo "Error: Branch name must start with 'release/', 'feat/', 'fix/', 'chore/', 'docs/', 'test/' or 'refactor/'." exit 1 # Exit if the branch name is not valid fi