Skip to content

Commit

Permalink
Update create-jira-issue.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
yusiny authored Jul 8, 2024
1 parent 507de93 commit 66ffed8
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/create-jira-issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,20 @@ jobs:
- name: Log created issue
run: echo "Jira Issue ${{ steps.issue-parser.outputs.parentKey }}/${{ steps.create.outputs.issue }} was created"

- name: Checkout develop code
uses: actions/checkout@v4
with:
ref: develop

- name: Create branch with Ticket number
run: |
git checkout -b ${{ steps.create.outputs.issue }}
git push origin ${{ steps.create.outputs.issue }}
- name: Update issue title
uses: actions-cool/issues-helper@v3
with:
actions: 'update-issue'
token: ${{ secrets.GITHUB_TOKEN }}
title: '${{ steps.create.outputs.issue }} ${{ github.event.issue.title }}'

0 comments on commit 66ffed8

Please sign in to comment.