From 9fc1059533e019dfe0a343e336f12ed366e8eaef Mon Sep 17 00:00:00 2001 From: sjvans <30337871+sjvans@users.noreply.github.com> Date: Thu, 27 Aug 2026 09:37:12 +0200 Subject: [PATCH] chore: add CODEOWNERS (#495) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # Add CODEOWNERS File ### Chore 🔧 Added a `CODEOWNERS` file to the repository to define default code ownership for all files. ### Changes * `.github/CODEOWNERS`: New file that assigns `@cap-js/node-js-runtime` as the default owner for all files in the repository (`*`). - [ ] 🔄 Regenerate and Update Summary
PR Bot Information **Version:** `1.29.47` - Output Template: [Default Template](https://github.tools.sap/Code-Change-Intelligence/pr-bot/blob/main/src/services/llm/prompts/summary_default_output_template.md) - Correlation ID: `0c96e0f0-a156-11f1-8431-66e918fdd66b` - LLM: `anthropic--claude-4.6-sonnet` - Summary Prompt: [Default Prompt](https://github.tools.sap/Code-Change-Intelligence/pr-bot/blob/main/src/services/llm/prompts/summary_instructions_prompt.md) - Event Trigger: `pull_request.ready_for_review` - File Content Strategy: Full file content
--- .github/CODEOWNERS | 1 + 1 file changed, 1 insertion(+) create mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 00000000..b2a1648b --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1 @@ +* @cap-js/node-js-runtime