Skip to content

[Feature] Tuist 각 레이어 모듈화 #166

[Feature] Tuist 각 레이어 모듈화

[Feature] Tuist 각 레이어 모듈화 #166

Workflow file for this run

name: Create and Delete Issue Branch
on:
issues:
types: [assigned]
issue_comment:
types: [created]
pull_request:
types: [closed]
jobs:
create_issue_branch_job:
runs-on: ubuntu-latest
steps:
- name: Create Issue Branch
uses: robvanderleek/create-issue-branch@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
delete_merged_branch:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
steps:
- name: Delete Merged Branch
uses: dawidd6/action-delete-branch@v3
with:
github_token: ${{ secrets.GH_TOKEN }}
branches: ${{ github.event.pull_request.head.ref }}