Skip to content

refactor: ์—”ํ‹ฐํ‹ฐ๋ฅผ ๊ฐœ์„ ํ•œ๋‹ค. #8

refactor: ์—”ํ‹ฐํ‹ฐ๋ฅผ ๊ฐœ์„ ํ•œ๋‹ค.

refactor: ์—”ํ‹ฐํ‹ฐ๋ฅผ ๊ฐœ์„ ํ•œ๋‹ค. #8

Workflow file for this run

name: Type labeler
on:
pull_request:
types:
- opened
jobs:
add_label:
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- name: checkout
uses: actions/checkout@v3
- name: add โœจ Feat label
uses: actions-ecosystem/action-add-labels@v1
if: ${{ startsWith(github.event.pull_request.title, 'feat:') }}
with:
labels: โœจ Feat
- name: add ๐Ÿž Bug label
uses: actions-ecosystem/action-add-labels@v1
if: ${{ startsWith(github.event.pull_request.title, 'fix:') }}
with:
labels: ๐Ÿž Bug
- name: add ๐Ÿ”จ Refactor label
uses: actions-ecosystem/action-add-labels@v1
if: ${{ startsWith(github.event.pull_request.title, 'refactor:') }}
with:
labels: ๐Ÿ”จ Refactor
- name: add ๐ŸŽจ Style label
uses: actions-ecosystem/action-add-labels@v1
if: ${{ startsWith(github.event.pull_request.title, 'style:') }}
with:
labels: ๐ŸŽจ Style
- name: add โš™ Setting label
uses: actions-ecosystem/action-add-labels@v1
if: ${{ startsWith(github.event.pull_request.title, 'chore:') }}
with:
labels: โš™ Setting
- name: add โœ… Test label
uses: actions-ecosystem/action-add-labels@v1
if: ${{ startsWith(github.event.pull_request.title, 'test:') }}
with:
labels: โœ… Test
- name: add ๐Ÿ“ Docs label
uses: actions-ecosystem/action-add-labels@v1
if: ${{ startsWith(github.event.pull_request.title, 'docs:') }}
with:
labels: ๐Ÿ“ Docs