Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# CODEOWNERS file for automatic PR review assignment
# See https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners

# Default owners
* @niccokunzmann @stevepiercy

# Documentation, except docstrings in `src`
*.md @stevepiercy
Comment thread
niccokunzmann marked this conversation as resolved.
Outdated
*.rst @stevepiercy
Comment thread
niccokunzmann marked this conversation as resolved.
Outdated
/.readthedocs.yml @stevepiercy @niccokunzmann
/.vale.ini @stevepiercy
/CONTRIBUTING.md @niccokunzmann @stevepiercy
Comment thread
stevepiercy marked this conversation as resolved.
Outdated
/docs/ @stevepiercy
Comment thread
niccokunzmann marked this conversation as resolved.
Outdated
/Makefile @stevepiercy
/styles @stevepiercy
Comment thread
stevepiercy marked this conversation as resolved.
Outdated

# Core calendar logic
/src/ @niccokunzmann @SashankBhamidi @stevepiercy

# Tests
/src/icalendar/tests/ @niccokunzmann @SashankBhamidi
Comment thread
SashankBhamidi marked this conversation as resolved.

# Fuzzing
/src/icalendar/fuzzing/ @ennamarie19 @niccokunzmann @SashankBhamidi
Comment thread
SashankBhamidi marked this conversation as resolved.

# CI and infrastructure
/.coveragerc @niccokunzmann
/.github/ @niccokunzmann @SashankBhamidi @stevepiercy
/.pre-commit-config.yaml @niccokunzmann @SashankBhamidi @stevepiercy
/bootstrap.py @niccokunzmann @stevepiercy
/buildout.cfg @niccokunzmann @stevepiercy
/pyproject.toml @niccokunzmann @stevepiercy
/tox.ini @niccokunzmann @stevepiercy

# Security
/SECURITY.md @niccokunzmann @stevepiercy
Comment thread
niccokunzmann marked this conversation as resolved.
Outdated

# Release stuff
/CHANGES.rst @niccokunzmann @stevepiercy
Comment thread
SashankBhamidi marked this conversation as resolved.
/MANIFEST.in @niccokunzmann
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ Minor changes:
- Document ``icalendar.version`` module.
- Use ``CONTRIBUTING.md`` in favour of ``.rst`` file.
- Add type hints to ``icalendar.tools`` module.
- Add ``CODEOWNERS`` file for automatic pull request review assignment. See `Issue 945 <https://github.com/collective/icalendar/issues/945>`_.

Breaking changes:

Expand Down
Loading