728x90
반응형
Pull Request를 올릴 때 자동으로 Label을 달아주는 workflow를 만들어보자.
먼저 .github/workflows에 workflow를 만들어준다.
name: Auto Labeling
on:
pull_request:
types: [ opened, reopened, synchronize ]
permissions:
contents: write
pull-requests: write
packages: write
jobs:
update_release_draft:
runs-on: self-hosted
steps:
- uses: release-drafter/release-drafter@v6
with:
commitish: main
config-name: auto_labeling.yml
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
그 다음 config 파일인 auto_labeling.yml 파일을 .github/ 경로에 만들어준다.
config 파일은 main 브랜치에 병합이 된 후 인식이 가능하니 알아두도록 하자.
template: |
## What’s Changed
$CHANGES
autolabeler:
- label: 'Component: Client'
files:
- 'client/**'
- label: 'Component: DB'
files:
- 'docker/postgres/**'
- label: 'Component: Server'
files:
- 'server/**'
- label: 'Type: Bug'
title:
- '/^fix(\([a-zA-Z][a-zA-Z]\))?:/i'
- label: 'Type: Build/CI/CD'
title:
- '/^build(\([a-zA-Z][a-zA-Z]\))?:/i'
- '/^ci(\([a-zA-Z][a-zA-Z]\))?:/i'
- '/^cd(\([a-zA-Z][a-zA-Z]\))?:/i'
- label: 'Type: Change'
title:
- '/^change(\([a-zA-Z][a-zA-Z]\))?:/i'
- label: 'Type: Chore'
title:
- '/^chore(\([a-zA-Z][a-zA-Z]\))?:/i'
- label: 'Type: Documentation'
title:
- '/^docs(\([a-zA-Z][a-zA-Z]\))?:/i'
- label: 'Type: Feature'
title:
- '/^feat(\([a-zA-Z][a-zA-Z]\))?:/i'
- label: 'Type: Style'
title:
- '/^style(\([a-zA-Z][a-zA-Z]\))?:/i'
- label: 'Type: Test'
title:
- '/^test(\([a-zA-Z][a-zA-Z]\))?:/i'
728x90
반응형
'DevOps > Git' 카테고리의 다른 글
Git | Github Actions | 릴리즈 자동화 (0) | 2024.05.02 |
---|---|
Git | Github Actions | Auto Labeling workflow ( PR 라벨링 자동화 ) (0) | 2024.05.02 |
Git | Github Actions CI/CD 파이프라인 구축 | self_host and container registry (0) | 2024.03.13 |
Git | Github Actions CI/CD 파이프라인 구축 (0) | 2023.09.19 |
Git | 깃허브 commit 되돌리기( reset, revert ) (0) | 2022.11.11 |