EL-1969 Add back link to single category search results #27
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Raise Dependabot Jira Issue | |
on: | |
pull_request: | |
types: [opened] | |
jobs: | |
gajira: | |
name: Raise Jira Issue | |
runs-on: ubuntu-latest | |
if: ${{ contains(github.event.pull_request.labels.*.name, 'dependencies') }} | |
steps: | |
- name: Login | |
uses: atlassian/gajira-login@master | |
env: | |
JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }} | |
JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }} | |
JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }} | |
- name: Create Jira ticket | |
id: create | |
uses: atlassian/gajira-create@master | |
with: | |
project: EL | |
issuetype: Task | |
summary: | | |
FALA Dependabot: ${{ github.event.pull_request.title }}, GitHub PR#${{github.event.number}} | |
description: | | |
Please view the PR for further information. | |
PR link: https://github.com/${{ github.repository }}/pull/${{ github.event.pull_request.number }} | |
In addition, please resolve other issues, if any. |