Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 2 additions & 17 deletions .github/workflows/create-jira-bug-issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ jobs:
JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }}
JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }}

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

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

- name: Checkout release code
uses: actions/checkout@v4
with:
ref: release
token: ${{ secrets.PAT_TOKEN }}

- name: Create branch with Ticket number
run: |
git config user.name github-actions
git config user.email github-actions@github.com
git checkout -b ${{ steps.create.outputs.issue }}
git push origin ${{ steps.create.outputs.issue }}
env:
GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }}

- name: Update issue title
uses: actions-cool/issues-helper@v3
with:
Expand Down
19 changes: 2 additions & 17 deletions .github/workflows/create-jira-feature-issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ jobs:
JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }}
JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }}

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

- name: Issue Parser
uses: stefanbuck/github-issue-praser@v3
Expand Down Expand Up @@ -75,21 +75,6 @@ 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
token: ${{ secrets.PAT_TOKEN }}

- name: Create branch with Ticket number
run: |
git config user.name github-actions
git config user.email github-actions@github.com
git checkout -b ${{ steps.create.outputs.issue }}
git push origin ${{ steps.create.outputs.issue }}
env:
GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }}

- name: Update issue title
uses: actions-cool/issues-helper@v3
with:
Expand Down