From b468abc95712521d73013c3b4e022c34cdecffcb Mon Sep 17 00:00:00 2001 From: Nicco Kunzmann Date: Wed, 26 Jun 2024 16:09:26 +0100 Subject: [PATCH 1/2] Create a release message pointing people to the changelog and PyPI --- .github/workflows/tests.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d8aa8c22..9d144a23 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -139,5 +139,9 @@ jobs: name: github-release steps: - uses: actions/checkout@v4 - - name: create release + - name: Create GitHub release from tag uses: ncipollo/release-action@v1 + with: + allowUpdates: true + body: "To view the changes, please see the [Changelog](https://icalendar.readthedocs.io/en/latest/changelog.html). This release can be installed from [PyPI](https://pypi.org/project/icalendar/#history)." + generateReleaseNotes: false From ffc3967292137f72e788a238030c492e95cc7598 Mon Sep 17 00:00:00 2001 From: Nicco Kunzmann Date: Wed, 26 Jun 2024 16:10:38 +0100 Subject: [PATCH 2/2] log changes --- CHANGES.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES.rst b/CHANGES.rst index 349fa43e..e1c86377 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -7,6 +7,7 @@ Changelog Minor changes: - Test that all code works with both ``pytz`` and ``zoneinfo``. +- Add message to GitHub release, pointing to the changelog - Make coverage report submission optional for pull requests - Rename ``master`` branch to ``main``, see `Issue `_