Skip to content

Commit d5e9b08

Browse files
authored
Merge pull request #502 from TaskFlow-CLAP/CLAP-387
CLAP-387 지라 이슈 생성 워크플로우 브랜치 생성 단계 삭제
2 parents 5d2d938 + 153a5b7 commit d5e9b08

File tree

2 files changed

+4
-34
lines changed

2 files changed

+4
-34
lines changed

.github/workflows/create-jira-bug-issue.yml

Lines changed: 2 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ jobs:
2929
JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }}
3030
JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }}
3131

32-
- name: Checkout release code
32+
- name: Checkout develop code
3333
uses: actions/checkout@v4
3434
with:
35-
ref: release
35+
ref: develop
3636

3737
- name: Issue Parser
3838
uses: stefanbuck/github-issue-praser@v3
@@ -74,21 +74,6 @@ jobs:
7474
- name: Log created issue
7575
run: echo "Jira Issue ${{ steps.issue-parser.outputs.parentKey }}/${{ steps.create.outputs.issue }} was created"
7676

77-
- name: Checkout release code
78-
uses: actions/checkout@v4
79-
with:
80-
ref: release
81-
token: ${{ secrets.PAT_TOKEN }}
82-
83-
- name: Create branch with Ticket number
84-
run: |
85-
git config user.name github-actions
86-
git config user.email github-actions@github.com
87-
git checkout -b ${{ steps.create.outputs.issue }}
88-
git push origin ${{ steps.create.outputs.issue }}
89-
env:
90-
GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }}
91-
9277
- name: Update issue title
9378
uses: actions-cool/issues-helper@v3
9479
with:

.github/workflows/create-jira-feature-issue.yml

Lines changed: 2 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ jobs:
3030
JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }}
3131
JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }}
3232

33-
- name: Checkout main code
33+
- name: Checkout develop code
3434
uses: actions/checkout@v4
3535
with:
36-
ref: main
36+
ref: develop
3737

3838
- name: Issue Parser
3939
uses: stefanbuck/github-issue-praser@v3
@@ -75,21 +75,6 @@ jobs:
7575
- name: Log created issue
7676
run: echo "Jira Issue ${{ steps.issue-parser.outputs.parentKey }}/${{ steps.create.outputs.issue }} was created"
7777

78-
- name: Checkout develop code
79-
uses: actions/checkout@v4
80-
with:
81-
ref: develop
82-
token: ${{ secrets.PAT_TOKEN }}
83-
84-
- name: Create branch with Ticket number
85-
run: |
86-
git config user.name github-actions
87-
git config user.email github-actions@github.com
88-
git checkout -b ${{ steps.create.outputs.issue }}
89-
git push origin ${{ steps.create.outputs.issue }}
90-
env:
91-
GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }}
92-
9378
- name: Update issue title
9479
uses: actions-cool/issues-helper@v3
9580
with:

0 commit comments

Comments
 (0)