[YS-116] refact: 회원가입 로직 클린 아키텍처 따르도록 코드 리팩터링 #71
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: "Add Pull Request Auto Template" | |
on: | |
pull_request: | |
branches: | |
- dev | |
jobs: | |
update_pr_templates: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: tzkhan/pr-update-action@v2 # https://github.com/tzkhan/pr-update-action | |
with: | |
repo-token: "${{ secrets.GITHUB_TOKEN }}" | |
base-branch-regex: 'dev' | |
head-branch-regex: 'ys-\d+' # Branch에서 Ticket Regex | |
title-template: '[%headbranch%] ' # PR Title Prefix 템플릿 (티켓 번호) (ex: [YS-1234] ~ ) | |
body-template: | # PR Body suffix 템플릿 (지라 링크) | |
## 🔗 Jira 티켓 | |
--- | |
https://yappsocks.atlassian.net/browse/%headbranch% | |
body-update-action: 'suffix' |