[feature] Auto release note 생성 추가 #5
Workflow file for this run
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: auto create release note | |
on: | |
push: | |
branches: | |
- master | |
# 테스트용 pr type 추후에 제거 예정 | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
permissions: | |
contents: read | |
jobs: | |
create-release-note: | |
permissions: | |
contents: write | |
pull-requests: read | |
runs-on: ubuntu-latest | |
steps: | |
- uses: release-drafter/release-drafter@v6 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |