refactor: 봉사자의 후원금 결제 확인을 위한 PG API 호출을 트랜잭션에서 분리한다. #206
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: 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 |