From 9a812a2cccc4bd03a5dd8a1860a7caeb53b1fc3c Mon Sep 17 00:00:00 2001 From: Noah Hanford Date: Wed, 4 Mar 2026 09:09:17 -0500 Subject: [PATCH 1/3] Update sonarqube to run on its own thing and only if it's not dependabot --- .github/workflows/sonarqube.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sonarqube.yml b/.github/workflows/sonarqube.yml index 5c157a5..8acafdb 100644 --- a/.github/workflows/sonarqube.yml +++ b/.github/workflows/sonarqube.yml @@ -10,8 +10,9 @@ on: jobs: build: - name: Build and analyze + name: Sonarqube Analysis runs-on: ubuntu-latest + if: ${{ !startsWith(github.head_ref, 'dependabot/') }} steps: - uses: actions/checkout@v4 From 9677a8e415238672ca8807b8d5bf59bc5fc4e58f Mon Sep 17 00:00:00 2001 From: Noah Hanford Date: Wed, 4 Mar 2026 09:11:30 -0500 Subject: [PATCH 2/3] Delete .github/pull_request_template.md --- .github/pull_request_template.md | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 .github/pull_request_template.md diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md deleted file mode 100644 index 1cd3021..0000000 --- a/.github/pull_request_template.md +++ /dev/null @@ -1,19 +0,0 @@ -## What - -_what the PR changes_ - -## Why - -_why these changes were made_ - -## Test Plan - -_how did you verify these changes did what you expected_ - -## Env Vars - -_did you add, remove, or rename any environment variables_ - -## Checklist - -- [ ] Tested all changes locally From d515b5da36cd9e64961ed26d5fe069481e028611 Mon Sep 17 00:00:00 2001 From: Noah Hanford Date: Wed, 4 Mar 2026 09:12:41 -0500 Subject: [PATCH 3/3] Rename workflow from Build to Sonarqube --- .github/workflows/sonarqube.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sonarqube.yml b/.github/workflows/sonarqube.yml index 8acafdb..f339ad7 100644 --- a/.github/workflows/sonarqube.yml +++ b/.github/workflows/sonarqube.yml @@ -1,4 +1,4 @@ -name: Build +name: Sonarqube on: push: