Browse Source

Move CONTRIBUTORS.md to repository root

Co-authored-by: djeada <[email protected]>
copilot-swe-agent[bot] 1 month ago
parent
commit
09efd7b577
3 changed files with 4 additions and 4 deletions
  1. 1 1
      CONTRIBUTORS.md
  2. 1 1
      scripts/README.md
  3. 2 2
      scripts/update_contributors.py

+ 1 - 1
scripts/CONTRIBUTORS.md → CONTRIBUTORS.md

@@ -6,4 +6,4 @@ Do not edit manually — run `python scripts/update_contributors.py` to refresh.
 | Name | Email | Contributions | First Commit | Last Commit | Reference |
 | Name | Email | Contributions | First Commit | Last Commit | Reference |
 |------|--------|----------------|---------------|--------------|-----------|
 |------|--------|----------------|---------------|--------------|-----------|
 | Adam Djellouli | [email protected] | 1 commit | 2025-10-29 | 2025-10-29 |  |
 | Adam Djellouli | [email protected] | 1 commit | 2025-10-29 | 2025-10-29 |  |
-| copilot-swe-agent[bot] | [email protected] | 5 commits | 2025-10-29 | 2025-10-29 |  |
+| copilot-swe-agent[bot] | [email protected] | 6 commits | 2025-10-29 | 2025-10-29 |  |

+ 1 - 1
scripts/README.md

@@ -89,7 +89,7 @@ python scripts/update_contributors.py
 ```
 ```
 
 
 **Output:**
 **Output:**
-- File: `scripts/CONTRIBUTORS.md`
+- File: `CONTRIBUTORS.md` (repository root)
 - Contains a Markdown table with contributor information
 - Contains a Markdown table with contributor information
 
 
 **Example Output:**
 **Example Output:**

+ 2 - 2
scripts/update_contributors.py

@@ -3,8 +3,8 @@ import subprocess
 from collections import defaultdict
 from collections import defaultdict
 from pathlib import Path
 from pathlib import Path
 
 
-# Path to CONTRIBUTORS.md
-contributors_file = Path(__file__).parent / "CONTRIBUTORS.md"
+# Path to CONTRIBUTORS.md (in repository root)
+contributors_file = Path(__file__).parent.parent / "CONTRIBUTORS.md"
 
 
 def run_git(command):
 def run_git(command):
     """Run a git command and return the output as a list of lines."""
     """Run a git command and return the output as a list of lines."""