Generate Release Notes #30
Workflow file for this run
This file contains hidden or 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
| name: Generate Release Notes | |
| on: | |
| release: | |
| types: | |
| - edited | |
| jobs: | |
| build_changelog: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Run release-notes-automator | |
| uses: lodovicoazzini/release-notes-automator@main | |
| with: | |
| repo: 'lodovicoazzini/set-saver' # The repository where your issues and milestones live | |
| label_config: | | |
| [ | |
| { | |
| "label": "feature", | |
| "template": "- 🚀 $TITLE", | |
| "section_title": "Cool New Stuff" | |
| }, | |
| { | |
| "label": "bug", | |
| "template": "- 🐛 $TITLE", | |
| "section_title": "Oops... Fixed It" | |
| }, | |
| { | |
| "label": "maintenance", | |
| "template": "- 🚧 $TITLE", | |
| "section_title": "Under the Hood" | |
| } | |
| ] | |
| env: | |
| ISSUES_REPOSITORY_TOKEN: ${{ secrets.LODOVICOAZZINI_SETSAVER_READ_ISSUES }} | |
| GH_TOKEN: ${{ secrets.THEREALLLAMA_SETSAVER_WRITE_CONTENT }} |