From c69fa41837622c027956e322b635d63242470806 Mon Sep 17 00:00:00 2001 From: Daniel Orge <151183684+DanielOrge@users.noreply.github.com> Date: Tue, 4 Nov 2025 12:10:57 +0000 Subject: [PATCH 1/7] Remove and add gibberish entries in JSON --- whaddayamean.json | 1 + 1 file changed, 1 insertion(+) diff --git a/whaddayamean.json b/whaddayamean.json index 653f618..5c96dd3 100644 --- a/whaddayamean.json +++ b/whaddayamean.json @@ -1,4 +1,5 @@ } - gibberish - more gibberish +- extra gibberish { From ce26c1942f9e7ae7c2e2779e652dfa1d98c169f8 Mon Sep 17 00:00:00 2001 From: heliocodacy <46491761+heliocodacy@users.noreply.github.com> Date: Tue, 4 Nov 2025 12:41:30 +0000 Subject: [PATCH 2/7] add-requirements --- python/requirements.txt | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 python/requirements.txt diff --git a/python/requirements.txt b/python/requirements.txt new file mode 100644 index 0000000..146444f --- /dev/null +++ b/python/requirements.txt @@ -0,0 +1,3 @@ +flask==1.0.2 +django==1.11.29 +requests==2.19.1 \ No newline at end of file From 987031a9a2b6dd8934174302713d66a26ccee92f Mon Sep 17 00:00:00 2001 From: Daniel Orge <151183684+DanielOrge@users.noreply.github.com> Date: Thu, 6 Nov 2025 15:08:53 +0000 Subject: [PATCH 3/7] Add CI/CD workflow configuration for main branch --- .github/workflows/whatevs.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/whatevs.yaml diff --git a/.github/workflows/whatevs.yaml b/.github/workflows/whatevs.yaml new file mode 100644 index 0000000..4787caa --- /dev/null +++ b/.github/workflows/whatevs.yaml @@ -0,0 +1,16 @@ +name: Main CI/CD +on: + workflow_dispatch: + push: + branches: + - main + pull_request: + branches: + - '**' + paths: + - '*.json' + - '*.yaml' + # Trigger CI for repository-meta file so required sonarqube check still gets posted + merge_group: + types: + - checks_requested # this is the one that's isn't triggering Codacy analysis From 4957d5264e3f21dbd450036ba020f09443f1c965 Mon Sep 17 00:00:00 2001 From: heliocodacy <46491761+heliocodacy@users.noreply.github.com> Date: Thu, 6 Nov 2025 15:14:54 +0000 Subject: [PATCH 4/7] Update pipeline --- .github/workflows/codacy.yml | 11 +++++++++-- .github/workflows/whatevs.yaml | 16 ---------------- 2 files changed, 9 insertions(+), 18 deletions(-) delete mode 100644 .github/workflows/whatevs.yaml diff --git a/.github/workflows/codacy.yml b/.github/workflows/codacy.yml index de20e8e..1311d23 100644 --- a/.github/workflows/codacy.yml +++ b/.github/workflows/codacy.yml @@ -3,10 +3,17 @@ name: Client Side Tools and Coverage on: push: - branches: [ '*' ] + branches: + - main pull_request: branches: [ '*' ] - workflow_dispatch: + paths: + - '*.json' + - '*.yaml' + merge_group: + types: + - checks_requested # this is the one that's isn't triggering Codacy analysis + jobs: build: diff --git a/.github/workflows/whatevs.yaml b/.github/workflows/whatevs.yaml deleted file mode 100644 index 4787caa..0000000 --- a/.github/workflows/whatevs.yaml +++ /dev/null @@ -1,16 +0,0 @@ -name: Main CI/CD -on: - workflow_dispatch: - push: - branches: - - main - pull_request: - branches: - - '**' - paths: - - '*.json' - - '*.yaml' - # Trigger CI for repository-meta file so required sonarqube check still gets posted - merge_group: - types: - - checks_requested # this is the one that's isn't triggering Codacy analysis From b6e70c04675b18cf0806c988e3318f177fd5bbb9 Mon Sep 17 00:00:00 2001 From: heliocodacy <46491761+heliocodacy@users.noreply.github.com> Date: Thu, 6 Nov 2025 15:15:31 +0000 Subject: [PATCH 5/7] n/A --- .github/workflows/codacy.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/codacy.yml b/.github/workflows/codacy.yml index 1311d23..89366ab 100644 --- a/.github/workflows/codacy.yml +++ b/.github/workflows/codacy.yml @@ -7,9 +7,6 @@ on: - main pull_request: branches: [ '*' ] - paths: - - '*.json' - - '*.yaml' merge_group: types: - checks_requested # this is the one that's isn't triggering Codacy analysis From 33eda70a8c7075f26c9c953c0304246625b43bbe Mon Sep 17 00:00:00 2001 From: heliocodacy <46491761+heliocodacy@users.noreply.github.com> Date: Thu, 6 Nov 2025 15:17:46 +0000 Subject: [PATCH 6/7] fix paths on codacy.yml --- .github/workflows/codacy.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/codacy.yml b/.github/workflows/codacy.yml index 89366ab..3318cdf 100644 --- a/.github/workflows/codacy.yml +++ b/.github/workflows/codacy.yml @@ -7,6 +7,9 @@ on: - main pull_request: branches: [ '*' ] + paths: + - '*.json' + - '*.yaml' merge_group: types: - checks_requested # this is the one that's isn't triggering Codacy analysis From ebe64ce8b37858b8e44fd29036a8ecc037bf6b9e Mon Sep 17 00:00:00 2001 From: heliocodacy <46491761+heliocodacy@users.noreply.github.com> Date: Thu, 6 Nov 2025 15:18:17 +0000 Subject: [PATCH 7/7] main branch is master... --- .github/workflows/codacy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codacy.yml b/.github/workflows/codacy.yml index 3318cdf..425d73c 100644 --- a/.github/workflows/codacy.yml +++ b/.github/workflows/codacy.yml @@ -4,7 +4,7 @@ name: Client Side Tools and Coverage on: push: branches: - - main + - master pull_request: branches: [ '*' ] paths: