Feat: JPA Entitiy 추가 작업 #26
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: Uni Issue & PR Labeler | |
on: | |
issues: | |
types: [ opened ] | |
pull_request: | |
types: [ opened ] | |
permissions: | |
contents: read | |
issues: write | |
checks: write | |
pull-requests: write | |
jobs: | |
label-jinsu: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Print Title of PR | |
run: echo The Title of your PR is ${{ github.event.pull_request.title }} | |
- name: add label jinsu | |
uses: actions-ecosystem/action-add-labels@v1 | |
if: ${{ startsWith(github.actor, 'jinsu4755') }} | |
with: | |
labels: 진수🦂 | |
label-2zerozu: | |
runs-on: ubuntu-latest | |
steps: | |
- name: add label 2zerozu | |
uses: actions-ecosystem/action-add-labels@v1 | |
if: ${{ startsWith(github.actor, '2zerozu') }} | |
with: | |
labels: 영주🐼 | |
label-jiyeoon00: | |
runs-on: ubuntu-latest | |
steps: | |
- name: add label jiyeoon00 | |
uses: actions-ecosystem/action-add-labels@v1 | |
if: ${{ startsWith(github.actor, 'jiyeoon00') }} | |
with: | |
labels: 지연🐰 | |
label-tag: | |
runs-on: ubuntu-latest | |
steps: | |
- name: add label Bug | |
uses: actions-ecosystem/action-add-labels@v1 | |
if: ${{ startsWith(github.event.pull_request.title, 'Bug:') }} | |
with: | |
labels: Bug | |
- name: add label Chore | |
uses: actions-ecosystem/action-add-labels@v1 | |
if: ${{ startsWith(github.event.pull_request.title, 'Chore:') }} | |
with: | |
labels: Chore | |
- name: add label Document | |
uses: actions-ecosystem/action-add-labels@v1 | |
if: ${{ startsWith(github.event.pull_request.title, 'Docs:') }} | |
with: | |
labels: Document | |
- name: add label Feature | |
uses: actions-ecosystem/action-add-labels@v1 | |
if: ${{ startsWith(github.event.pull_request.title, 'Feat:') }} | |
with: | |
labels: Feature | |
- name: add label Hotfix | |
uses: actions-ecosystem/action-add-labels@v1 | |
if: ${{ startsWith(github.event.pull_request.title, 'Hotfix:') }} | |
with: | |
labels: Hotfix |