diff --git a/.github/workflows/theme-ci.yml b/.github/workflows/theme-ci.yml index cd6f3a2314..5b8f5c7164 100644 --- a/.github/workflows/theme-ci.yml +++ b/.github/workflows/theme-ci.yml @@ -219,6 +219,17 @@ jobs: run: | echo "Jira Upload Build Info response: ${{ steps.push_build_info_to_jira.outputs.response }}" + - name: Update Jira Tasks with Release Number + if: ${{ github.ref == 'refs/heads/master' }} + uses: VirtoCommerce/vc-github-actions/update-jira-tasks-with-release-number@master + with: + ghRepository: ${{ github.repository }} + ghReleaseTag: ${{ steps.image.outputs.prefix }} + jiraCustomFieldId: 'customfield_10297' # 'customfield_10297' corresponds to 'Theme release' field + jiraCustomFieldValue: "${{ steps.image.outputs.prefix }}" + client-id: '${{ secrets.JIRA_USER }}' + client-secret: '${{ secrets.JIRA_TOKEN }}' + ui-e2e-auto-tests: needs: 'ci'