From 2aa5182e52f52fb7031ec23ae4c4c9d4a06f38ad Mon Sep 17 00:00:00 2001
From: Sean <ussa.say@gmail.com>
Date: Tue, 14 Jan 2025 13:40:57 -0800
Subject: [PATCH 1/2] Add `on.pull_request.paths` to gh actions

---
 .github/workflows/auto-comment.yml      | 1 +
 .github/workflows/backend-lint-test.yml | 1 +
 .github/workflows/frontend-lint.yml     | 1 +
 3 files changed, 3 insertions(+)

diff --git a/.github/workflows/auto-comment.yml b/.github/workflows/auto-comment.yml
index 029fc04..56ce895 100644
--- a/.github/workflows/auto-comment.yml
+++ b/.github/workflows/auto-comment.yml
@@ -2,6 +2,7 @@ name: Auto Comment on PRs
 on:
   pull_request:
     types: [opened]
+    paths: server/**
 jobs:
   auto-comment:
     runs-on: ubuntu-latest
diff --git a/.github/workflows/backend-lint-test.yml b/.github/workflows/backend-lint-test.yml
index 41bd41b..73bf438 100644
--- a/.github/workflows/backend-lint-test.yml
+++ b/.github/workflows/backend-lint-test.yml
@@ -3,6 +3,7 @@ on:
   pull_request:
     branches:
       - main
+    paths: server/**
 jobs:
   lint-test:
     runs-on: ubuntu-latest
diff --git a/.github/workflows/frontend-lint.yml b/.github/workflows/frontend-lint.yml
index 0a1cad9..fe76bea 100644
--- a/.github/workflows/frontend-lint.yml
+++ b/.github/workflows/frontend-lint.yml
@@ -3,6 +3,7 @@ name: Frontend - Linting
 on:
   pull_request:
     branches: [main]
+    paths: client/**
 jobs:
   Linux:
     runs-on: ubuntu-latest

From 8c3d11b0d2d50e4a675a52fa8cf625d56a060f4f Mon Sep 17 00:00:00 2001
From: Sean <ussa.say@gmail.com>
Date: Tue, 14 Jan 2025 13:41:25 -0800
Subject: [PATCH 2/2] Format server/README.md to see if frontend action runs

---
 server/README.md | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/server/README.md b/server/README.md
index 7ac4e93..8167820 100644
--- a/server/README.md
+++ b/server/README.md
@@ -1,11 +1,14 @@
 ## Setup
+
 1. Copy `.env.example` to `.env` and fill in the values
 2. Add Firebase Admin credentials to a file named `firebaseServiceAccountKey.json`, at the same level as the `.env` file.
 3. Start up Docker Desktop
 4. Spin up Postgres:
+
 ```bash
 docker-compose --env-file .env up
 ```
 
 ## Directly querying Postgres on a local build using `psql`
-psql -h localhost -p 5432 -U acmucsd_dev -d hackathon_portal
\ No newline at end of file
+
+psql -h localhost -p 5432 -U acmucsd_dev -d hackathon_portal