Skip to content

Commit

Permalink
Edit Release Notes
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi committed Oct 29, 2024
1 parent 4265a65 commit 062686d
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/release-prepare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
paths:
- '.github/project.yml'

permissions:
contents: write

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
Expand All @@ -18,3 +21,14 @@ jobs:
secrets: inherit
with:
java_version: 17

edit-release-notes:
name: Edit Release Notes
needs: prepare-release
runs-on: ubuntu-latest
steps:
- name: Change release notes
run: gh release edit ${RELEASE_VERSION} -n "https://docs.quarkiverse.io/quarkus-cxf/dev/release-notes/${RELEASE_VERSION}.html"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
RELEASE_VERSION: ${{ needs.prepare-release.outputs.release-version }}

0 comments on commit 062686d

Please sign in to comment.