Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix changelog for 3.14.0 #1456

Merged
merged 2 commits into from
Jul 2, 2021
Merged
Show file tree
Hide file tree
Changes from all 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
11 changes: 10 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ on:
release:
description: "Release tag (e.g. 3.2.1)"
required: true
before_script:
description: |
Bash code to run before script.sh is executed. This should only be used when re-running
a workflow to correct some aspect of the docs. e.g.: git checkout origin/3.14 CHANGES.rst
required: false

env:
RELEASE_WORKFLOW: true
Expand All @@ -37,7 +42,7 @@ jobs:
- name: Install python dependencies
run: |
echo ::group::PYDEPS
pip install bandersnatch bump2version gitpython python-redmine towncrier wheel
pip install bandersnatch bump2version gitpython python-redmine towncrier==19.9.0 wheel
echo ::endgroup::

- name: Configure Git with pulpbot name and email
Expand Down Expand Up @@ -139,6 +144,10 @@ jobs:
if: ${{ env.TEST == 'bindings' || env.TEST == 'generate-bindings' }}
run: .github/workflows/scripts/install_ruby_client.sh

- name: Additional before_script
run: ${{ github.event.inputs.before_script }}
shell: bash

- name: Script
if: ${{ env.TEST != 'generate-bindings' }}
run: .github/workflows/scripts/script.sh
Expand Down
4 changes: 3 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ Changelog

.. towncrier release notes start

3.14.0 (2021-07-01)REST API
3.14.0 (2021-07-01)
===================
REST API
--------

Features
Expand Down