========== Contribute ========== This guide describes how to contribute to icalendar. Examples of how to contribute ----------------------------- - Report issues in the `issue tracker `_. - Comment on and resolve issues. - Submit pull requests from your fork of the icalendar repository. - Extend the :doc:`documentation/index`. - Sponsor development of icalendar through `Open Collective `_. .. _first-time-contributors: First-time contributors ----------------------- Contributions to icalendar from people new to icalendar are welcome. Like most free and open source software, icalendar promotes the "free" part, meaning freedom or liberty. - You're free to start work on issues without asking. - You're free to ask questions to clarify the scope of work before you start. - We don't assign issues. - Free other contributors from duplicating your effort by opening a pull request as soon as you can. For people participating in programs to encourage first-time contributions, including `Hacktoberfest `_, `Good First Issue `_, and `Up For Grabs `_, you must comply with their terms and conditions to receive their recognition or rewards. Accordingly, you may request of the maintainers in your pull request that you would like recognition for your contribution. .. seealso:: Find open issues. .. grid:: 1 2 3 4 .. grid-item:: .. button-link:: https://github.com/collective/icalendar/issues?q=is%3Aissue%20state%3Aopen%20label%3A%22good%20first%20issue%22 :color: primary :shadow: Good First Issue .. grid-item:: .. button-link:: https://github.com/collective/icalendar/issues?q=is%3Aissue%20state%3Aopen%20label%3A%22doc%22 :color: success :shadow: Documentation .. grid-item:: .. button-link:: https://github.com/collective/icalendar/issues?q=is%3Aissue%20state%3Aopen%20label%3Ahacktoberfest :color: warning :shadow: Hacktoberfest .. _artificial-intelligence-policy: Artificial intelligence policy ------------------------------ We want to protect the joy, goodwill, and volunteer time of the maintainers and contributors of icalendar. As such, we take a strong stance against artificial intelligence (AI) abuse. Contributors to icalendar must follow icalendar's AI policy as described in this section and its subsections. .. _responsible-ai-use: Responsible AI use `````````````````` You may responsibly use AI as a tool to draft a pull request. That means you must comply with :ref:`pull-request-requirements` and follow the Python Calendaring Ecosystem's `Code of Conduct `_. If you use AI in your work: - You must take responsibility for the output, including reviewing and validating the output for accuracy and ensuring it resolves an issue. - You must check the AI's terms of use, and ensure that outputs are not reconstructed from copyrighted sources. - You are expected to understand and be able to explain design and code decisions. - In your git commit messages, you must specify both (1) which AI model and version you used, and (2) how you used it, by either including the prompts and interactions you used or summarizing them. - You must disclose that you used AI in your change log entry. - You shall be held accountable for your AI-generated content. AI abuse ```````` You may not abuse AI to generate a pull request that is disruptive to the icalendar community or does not adhere to :ref:`responsible-ai-use` described in the previous subsection. Examples of such abuse and irresponsible use include the following actions. - You claim no responsibility for the output of AI generated content. - Your pull request demonstrates no understanding or thought whatsoever to solve an issue. - Your pull request plagiarizes copyrighted or other material to which you have no legal claim. - You ignore or don't respond to feedback. - The GitHub account is itself an AI agent. Report suspected violations ``````````````````````````` To report a suspected violation of this AI policy, see the `Reporting an issue `_ section in the Python Calendaring Ecosystem's Code of Conduct. The maintainers may close pull requests without providing feedback that they deem to be spam, AI slop, abuse, or that do not comply with :ref:`pull request requirements `. The maintainers may also take further action, including suspend, ban, or report GitHub users, as described in Python Calendaring Ecosystem's `Code of Conduct `_. .. _pull-request-requirements: Pull request requirements ------------------------- Before submitting your pull request, ensure you have met the following requirements. #. Add a changelog entry to :file:`CHANGES.rst`. This is required and enforced by GitHub checks. See :ref:`change-log` for details. #. Add a test which proves your fix and passes. #. Run all tests to ensure your changes don't break any existing functionality. #. :doc:`Add or edit documentation `, both as docstrings to be rendered in the :doc:`API reference documentation <../reference/api/icalendar>` and narrative documentation, as necessary. The maintainers may close pull requests without providing feedback that they deem to be spam, AI slop, abuse, or that do not comply with pull request requirements. The maintainers may also take further action, including suspend, ban, or report GitHub users, as described in Python Calendaring Ecosystem's `Code of Conduct `_. .. _change-log: Change log entry format ``````````````````````` To create a change log entry or news item, create a file in the :file:`news` directory, located in the root of the package. The change log entry's format must be ``#.type``, where ``#`` is the referenced GitHub issue or pull request number, ``.`` is the literal extension delimiter, and ``type`` is one of the following strings. ``breaking`` For changes that break the existing API. ``removal`` For removals and deprecations. ``feature`` For new functionality. ``bugfix`` For bug fixes and error corrections. ``documentation`` For changes to the documentation, docstrings, spelling dictionary, or any other documentation matter. ``deps`` For changes to project dependencies. ``internal`` For internal changes, such as issue templates. ``chore`` For routine tasks that shouldn't be published, but will satisfy the checker for the presence of a change log entry. For orphan change log entries—that is, those that don't need to be linked to any issue ID or other identifier—start the file name with ``+``. The content will still be included in the change log, at the end of the category corresponding to the file extension. .. code-block:: text +anything.bugfix .. note:: icalendar uses `towncrier `_ to automatically update the change log from entries stored in the :file:`/news` directory at the root of the project. .. _write-a-good-change-log-entry-label: Write a good change log entry ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ .. important:: These change log entries become narrative documentation. The content of this file must include the following. - A brief message that summarizes the changes in your contribution. - An attribution to yourself, in the format of ``@github_username``. You can write a good change log entry with the following guidance. - Use a narrative format, in the past tense, proper English spelling and grammar, and inline markup as needed. - Write your change log entry for its appropriate audience. - Most entries should address *users* of the software. - An entry for a change to a public API should address *developers*. - If you fix a bug, write what was broken and is now fixed. You should not write *how* you fixed it. - If you add or change a feature or public API, write a summary of previous behavior, what it does now, and how to use it. - Refer to narrative documentation as needed. The following text is an example of a good change log entry, placed inside :file:`/news/1360.feature`. .. code-block:: rst Created a :meth:`~icalendar.prop.recur.weekday.vWeekday.ical_value` property for the :class:`~icalendar.prop.recur.weekday.vWeekday` component, mirroring the existing pattern on :class:`~icalendar.prop.boolean.vBoolean`. @mvanhorn The following would be a poor change log entry. .. code-block:: rst Fix #123456 by chaning config of file [did_not_read_this_guide] Set up for development ---------------------- If you would like to set up icalendar to contribute changes, see :doc:`development`. .. toctree:: :hidden: documentation/index development code-of-conduct credits maintenance