From c397821e6d718a191eb6b9c746eab5c8b7368432 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 6 Nov 2025 07:41:16 +0000 Subject: [PATCH 1/4] Initial plan From b1c9c4aa8950fc26bf02daae9bea09b0786934d6 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 6 Nov 2025 07:44:44 +0000 Subject: [PATCH 2/4] Remove accidentally committed ${GITHUB_OUTPUT} and add .gitignore Co-authored-by: malikparvez <84777619+malikparvez@users.noreply.github.com> --- ${GITHUB_OUTPUT} | 2 -- .gitignore | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 48 insertions(+), 2 deletions(-) delete mode 100644 ${GITHUB_OUTPUT} create mode 100644 .gitignore diff --git a/${GITHUB_OUTPUT} b/${GITHUB_OUTPUT} deleted file mode 100644 index 4733c3e..0000000 --- a/${GITHUB_OUTPUT} +++ /dev/null @@ -1,2 +0,0 @@ -version=2025.2 -version=2025.3 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7ec3243 --- /dev/null +++ b/.gitignore @@ -0,0 +1,48 @@ +# GitHub Actions runtime files +${GITHUB_OUTPUT} +${GITHUB_ENV} +${GITHUB_PATH} +${GITHUB_STEP_SUMMARY} +${RUNNER_TEMP} +${RUNNER_TOOL_CACHE} + +# IDE and Editor files +.vscode/ +.idea/ +*.swp +*.swo +*~ +.DS_Store + +# OS files +Thumbs.db +Desktop.ini + +# Temporary files +*.tmp +*.temp +*.log +*.cache + +# Build artifacts +dist/ +build/ +*.pyc +__pycache__/ +node_modules/ +*.gem +.bundle/ + +# Ruby specific +Gemfile.lock +vendor/bundle/ + +# Python specific +*.egg-info/ +.pytest_cache/ +.coverage +htmlcov/ + +# Environment files +.env +.env.local From 18c9400c83db3065c1a33022bb5f2eafc2679f80 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 6 Nov 2025 07:46:34 +0000 Subject: [PATCH 3/4] Address code review feedback: reorganize .gitignore Co-authored-by: malikparvez <84777619+malikparvez@users.noreply.github.com> --- .gitignore | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 7ec3243..d8bfe36 100644 --- a/.gitignore +++ b/.gitignore @@ -12,9 +12,9 @@ ${RUNNER_TOOL_CACHE} *.swp *.swo *~ -.DS_Store # OS files +.DS_Store Thumbs.db Desktop.ini @@ -34,7 +34,6 @@ node_modules/ .bundle/ # Ruby specific -Gemfile.lock vendor/bundle/ # Python specific From 8d694f48f0d2a5f3fa1e5082a823ede6f669a8c7 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 6 Nov 2025 07:47:20 +0000 Subject: [PATCH 4/4] Consolidate Ruby build artifacts in .gitignore Co-authored-by: malikparvez <84777619+malikparvez@users.noreply.github.com> --- .gitignore | 2 -- 1 file changed, 2 deletions(-) diff --git a/.gitignore b/.gitignore index d8bfe36..555fa07 100644 --- a/.gitignore +++ b/.gitignore @@ -32,8 +32,6 @@ __pycache__/ node_modules/ *.gem .bundle/ - -# Ruby specific vendor/bundle/ # Python specific