Skip to content

chore(deps): bump github.com/mattn/go-isatty from 0.0.21 to 0.0.22 in the gomod-minor-patch group across 1 directory #94

chore(deps): bump github.com/mattn/go-isatty from 0.0.21 to 0.0.22 in the gomod-minor-patch group across 1 directory

chore(deps): bump github.com/mattn/go-isatty from 0.0.21 to 0.0.22 in the gomod-minor-patch group across 1 directory #94

Workflow file for this run

name: Release Drafter
# Enhanced GitHub Flow §18.9 자동화
# PR이 main에 머지될 때마다 next release의 draft notes를 자동 업데이트.
# Draft 내용은 수동으로 CHANGELOG.md에 반영한 후 ./scripts/release.sh 실행.
on:
push:
branches:
- main
pull_request:
types: [opened, reopened, synchronize]
permissions:
contents: read
concurrency:
group: release-drafter-${{ github.ref }}
cancel-in-progress: true
jobs:
update_release_draft:
name: Update Release Draft
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- name: Run Release Drafter
uses: release-drafter/release-drafter@v6
with:
config-name: release-drafter.yml
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}