Skip to content

Commit

Permalink
Added pre-commit hooks for checking and updating news in projects usi…
Browse files Browse the repository at this point in the history
…ng pre-commit (twisted#498)

* added ``towncrier-check`` to just check newly commited news fragments
* added ``towncrier-update`` to actually update the news
* added documentation section for ``pre-commit``
  • Loading branch information
COUR4G3 committed Apr 20, 2023
1 parent 5c48346 commit 14adb5f
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .pre-commit-hooks.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
- id: towncrier-check
name: towncrier-check
description: Check towncrier changelog updates
entry: towncrier --draft
pass_filenames: false
types: [text]
files: newsfragments/
language: python
- id: towncrier-update
name: towncrier-update
description: Update changelog with towncrier
entry: towncrier
pass_filenames: false
args: ["--yes"]
files: newsfragments/
language: python
1 change: 1 addition & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ Reference

cli
configuration
pre-commit
customization/index


Expand Down
40 changes: 40 additions & 0 deletions docs/pre-commit.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
pre-commit
==========

``towncrier`` can also be used in your `pre-commit <https://pre-commit.com/>`_ configuration (``.pre-commit-config.yaml``)
to check and/or update your news fragments on commit or during CI processes.

No additional configuration is needed in your ``towncrier`` configuration, the hook will read from the appropriate configuration
files in your project.


Examples
--------

Usage with the default configuration
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

.. code-block:: yaml
repos:
- repo: https://github.com/twisted/towncrier
- rev: trunk
- hooks:
- id: towncrier-check
Usage with custom configuration and directories
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

News fragments are stored in ``changelog.d/`` in the root of the repository and we want to keep the news fragments when
running ``update``:

.. code-block:: yaml
repos:
- repo: https://github.com/twisted/towncrier
- rev: trunk
- hooks:
- id: towncrier-update
files: $changelog\.d/
args: ['--keep']
1 change: 1 addition & 0 deletions src/towncrier/newsfragments/498.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Added pre-commit hooks for checking and updating news in projects using pre-commit.

0 comments on commit 14adb5f

Please sign in to comment.