Milestone Closure #8
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
name: Milestone Closure | |
# Trigger the workflow on milestone events | |
on: | |
milestone: | |
types: [closed] | |
jobs: | |
create-release-notes: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Create Release Notes | |
uses: docker://decathlon/release-notes-generator-action:2.0.1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
OUTPUT_FOLDER: temp_release_notes | |
USE_MILESTONE_TITLE: "true" |