build(deps): bump the npm group with 3 updates #170
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: Create Jira Ticket | |
on: | |
pull_request: | |
types: | |
- opened | |
jobs: | |
create_jira_ticket: | |
runs-on: ubuntu-latest | |
if: ${{ contains(github.event.pull_request.labels.*.name, 'dependencies') }} | |
steps: | |
- name: Login | |
uses: atlassian/gajira-login@v3 | |
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@v3 | |
with: | |
project: AP | |
issuetype: Maintenance | |
summary: "Apply Dependabot PR: ${{ github.event.pull_request.title }}" | |
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. |