From f066737dd7274b025873149496b097acc2366adf Mon Sep 17 00:00:00 2001 From: "whitesource-bolt-for-github[bot]" <42819689+whitesource-bolt-for-github[bot]@users.noreply.github.com> Date: Thu, 30 Dec 2021 08:04:31 +0000 Subject: [PATCH 1/5] Add .whitesource configuration file --- .whitesource | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .whitesource diff --git a/.whitesource b/.whitesource new file mode 100644 index 0000000..55b922e --- /dev/null +++ b/.whitesource @@ -0,0 +1,12 @@ +{ + "scanSettings": { + "baseBranches": [] + }, + "checkRunSettings": { + "vulnerableCheckRunConclusionLevel": "failure", + "displayMode": "diff" + }, + "issueSettings": { + "minSeverityLevel": "LOW" + } +} \ No newline at end of file From 23fb291f97681bd3cc39bb58cdbedcae7bcd84e3 Mon Sep 17 00:00:00 2001 From: akax <32862241+joseguzman1337@users.noreply.github.com> Date: Tue, 6 Jan 2026 07:39:43 +0800 Subject: [PATCH 2/5] Add macOS system files to .gitignore MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add .DS_Store pattern to ignore macOS folder metadata - Add ._* pattern to ignore AppleDouble files 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2964518 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ + +# macOS system files +.DS_Store +._* From ed81f2804620746d7e2ad03b0a37d8692b5f7827 Mon Sep 17 00:00:00 2001 From: joseguzman1337 Date: Wed, 18 Mar 2026 20:03:38 -0500 Subject: [PATCH 3/5] chore: bump all repository dependencies to latest --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 954f0db..7cb6656 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -selenium \ No newline at end of file +selenium From 49bdf587f9de5fa6d9e0ecf3af40298a24f26513 Mon Sep 17 00:00:00 2001 From: joseguzman1337 Date: Wed, 18 Mar 2026 21:09:00 -0500 Subject: [PATCH 4/5] chore(sync): incorporate AI agents work and sync --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 7cb6656..b3bcf0e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -selenium +selenium==4.41.0 From d9e6c2800e190693ba044c55309460adc7daeca9 Mon Sep 17 00:00:00 2001 From: joseguzman1337 Date: Tue, 31 Mar 2026 07:39:36 -0500 Subject: [PATCH 5/5] [CRUSH] chore(repo): checkpoint pending changes #TASK-000 --- project.json | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 project.json diff --git a/project.json b/project.json new file mode 100644 index 0000000..c89d2ed --- /dev/null +++ b/project.json @@ -0,0 +1,47 @@ +{ + "name": "repo-repos-reelphish", + "root": "repos/ReelPhish", + "projectType": "library", + "targets": { + "status": { + "executor": "nx:run-commands", + "options": { + "command": "git -C repos/ReelPhish status --short || true" + }, + "metadata": { + "supervisorRequired": true + } + }, + "fetch": { + "executor": "nx:run-commands", + "options": { + "command": "git -C repos/ReelPhish fetch --all --prune || true" + }, + "metadata": { + "supervisorRequired": true + } + }, + "log": { + "executor": "nx:run-commands", + "options": { + "command": "git -C repos/ReelPhish log --oneline -10 || true" + }, + "metadata": { + "supervisorRequired": true + } + }, + "manifests": { + "executor": "nx:run-commands", + "options": { + "command": "find repos/ReelPhish \\( -name package.json -o -name pyproject.toml -o -name Cargo.toml -o -name go.mod -o -name setup.py \\) -not -path '*/node_modules/*' -not -path '*/testdata/*' -not -path '*/fixtures/*' -print | sort" + }, + "metadata": { + "supervisorRequired": true + } + } + }, + "tags": [ + "scope:repos", + "type:subrepo" + ] +} \ No newline at end of file