Skip to content

Commit

Permalink
feat(www): Update contact form (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
chris3ware authored Sep 12, 2024
1 parent 0cf6200 commit 53635ad
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/hugo.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Calling workflow job name should be: `name: test` to ensure a required status
# check for 'Test' will match
name: Test
name: Build
on:
workflow_call: {}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Lint and Test
name: Test Build
on:
pull_request:
types: [opened, synchronize]
Expand All @@ -7,8 +7,8 @@ on:
permissions: {}

jobs:
lint:
name: Lint
test:
name: Test
runs-on: ubuntu-latest
permissions:
contents: read
Expand All @@ -24,16 +24,13 @@ jobs:
with:
persist-credentials: true # lint fails to authenticate when false

- name: Lint with trunk
uses: trunk-io/trunk-action@da67635060feab46c164bc130690e61864a5d13b # v1.1.13

- name: Dependency Review
uses: actions/dependency-review-action@4901385134134e04cec5fbe5ddfe3b2c5bd5d976 # v4.0.0

test:
build:
# Job name should be the same as the called workflow name for required status
# check to match. In this case job level `name: Test` matches workflow level
# `name: Test` in hugo.yaml
name: Test
needs: [lint]
# check to match. In this case job level `name: Build` matches workflow level
# `name: Build` in hugo.yaml
name: Build
needs: [test]
uses: 3ware/www-src/.github/workflows/hugo.yaml@92f6a8455c7aef8dd906e7c0f5259ee21dcd80c9 #v2.1.0
2 changes: 1 addition & 1 deletion commitlint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ module.exports = {
"codeowners",
"commitlint",
"delete-workflow-run",
"lint-and-test",
"test-and-build",
"pr-title",
"publish",
"readme",
Expand Down
2 changes: 1 addition & 1 deletion content/en/home/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@ For more information about our services and how we can help with delivering your
Business Hours: Monday - Friday: 09:00 - 17:00
Saturday - Sunday: Closed

{{<form-contact action="https://formspree.io/f/xnnaggkn" method="POST">}}<!-- trunk-ignore(markdownlint/MD033) -->
{{<form-contact action="https://formspree.io/f/mblreoaq" method="POST">}}<!-- trunk-ignore(markdownlint/MD033) -->

0 comments on commit 53635ad

Please sign in to comment.