Prepare a new release #43
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# from: https://github.com/packit/packit/blob/main/.github/workflows/prepare-release.yml | |
name: Prepare a new release | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
required: true | |
description: Version number for the new release | |
jobs: | |
prepare-release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Update translations from weblate | |
uses: ./.github/actions/weblate-pull-translations | |
- name: Prepare release content | |
uses: inknos/[email protected] | |
with: | |
version: ${{ inputs.version }} | |
specfiles: dnf5.spec | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v4 | |
with: | |
labels: release | |
commit-message: Release ${{ inputs.version }} | |
title: Release ${{ inputs.version }} | |
body: Update the changelog and the specfile for release ${{ inputs.version }}. | |
delete-branch: true |