From e0936be05b16d4ea24bf2a8bcc696341fd0ed1f1 Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Tue, 30 Dec 2025 19:39:24 -0600 Subject: [PATCH 1/5] feat: open terminal ctrl-click in a new tab --- src/components/Header.astro | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/src/components/Header.astro b/src/components/Header.astro index 69f7c6b..57ec707 100644 --- a/src/components/Header.astro +++ b/src/components/Header.astro @@ -15,7 +15,12 @@ const promptText = topic ? `barrett@ruth:~$ ${topic}` : "barrett@ruth:~$"; ---
- +
{promptText} @@ -49,4 +54,15 @@ const promptText = topic ? `barrett@ruth:~$ ${topic}` : "barrett@ruth:~$"; } + + From bb25461ade92426ca4d18cad72060bc3b4bfebad Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Tue, 30 Dec 2025 19:46:13 -0600 Subject: [PATCH 2/5] fix(ci): run on prs --- .github/workflows/aws.yaml | 5 +++-- .github/workflows/ci.yaml | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/aws.yaml b/.github/workflows/aws.yaml index 67f8aa0..64c4559 100644 --- a/.github/workflows/aws.yaml +++ b/.github/workflows/aws.yaml @@ -1,8 +1,9 @@ name: Deploy to AWS S3 on: + pull_request: + branches: [ main ] push: - branches: - - main + branches: [ main ] jobs: deploy: diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 0e46c99..b312c74 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -2,9 +2,9 @@ name: CI on: pull_request: + branches: [ main ] push: - branches: - - main + branches: [ main ] jobs: lint: From c948260709f38a0d8d95e1fc40d18073ae5a0a0e Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Tue, 30 Dec 2025 19:47:07 -0600 Subject: [PATCH 3/5] fix(ci): run prettier on yaml files --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 1cdab3e..d9c7a02 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ "check": "astro check" }, "lint-staged": { - "*.{js,ts,jsx,tsx,json,css,scss,md,astro,html}": [ + "*.{js,ts,jsx,tsx,json,css,scss,md,astro,html,yaml,yml}": [ "prettier --write", "astro check" ] From 5422d3961c13c61a93666f4bf7e1ef751a81a312 Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Tue, 30 Dec 2025 19:47:55 -0600 Subject: [PATCH 4/5] fix --- .github/workflows/aws.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/aws.yaml b/.github/workflows/aws.yaml index 64c4559..ef57cd0 100644 --- a/.github/workflows/aws.yaml +++ b/.github/workflows/aws.yaml @@ -1,9 +1,7 @@ name: Deploy to AWS S3 on: - pull_request: - branches: [ main ] push: - branches: [ main ] + branches: [main] jobs: deploy: From 4b7fba6232ae2e3c0e260e988a742815c18aec6e Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Tue, 30 Dec 2025 19:49:00 -0600 Subject: [PATCH 5/5] fix(ci): write --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b312c74..2f4de83 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -2,9 +2,9 @@ name: CI on: pull_request: - branches: [ main ] + branches: [main] push: - branches: [ main ] + branches: [main] jobs: lint: