[YS-53] feat: Experiment 관련 엔티티 추가 #52
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' |