Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
peggy-quartech committed Dec 17, 2024
1 parent 1619db8 commit 17adba0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/custom-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ categories:
- title: 🧹 Chores
labels:
- chore

change-template: "- ${{PR.title}} (#${{PR.number}}) by @${{PR.author}}"
no-changes-template: "- No changes in this release."

Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/release-notes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ name: Generate Release Notes

on:
workflow_dispatch: # Enables manual triggering
inputs:
release_tag:
description: "Tag of the release"
required: true
default: "release-1.2.1"
release:
types:
- created
Expand All @@ -24,5 +29,5 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Ensure token is available
run: |
gh release edit ${{ github.event.release.id }} \
gh release edit ${{ github.event.release.tag_name }} \
--notes "${{ steps.notes.outputs.release_notes }}"

0 comments on commit 17adba0

Please sign in to comment.