ci: remove jira issue workflow (#3129)

### Summary

Removes the workflow for creating Jira tickets.
This commit is contained in:
Matt Robinson 2024-05-31 18:00:40 -04:00 committed by GitHub
parent 6005abce79
commit 54c1e4e57f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,34 +0,0 @@
name: create_jira_issue
on:
issues:
types:
- opened
jobs:
create:
runs-on: ubuntu-latest
name: Create JIRA Issue
steps:
- name: Login to Jira
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 issue
uses: atlassian/gajira-create@v3
with:
project: CORE
issuetype: Task
summary: ${{ github.event.issue.title }}
description: |
Created from github issue: ${{ github.event.issue.html_url }}
----
${{ github.event.issue.body }}
fields: '{ "labels": ["github-issue"] }'
- name: Log created issue
run: echo "Issue ${{ steps.create.outputs.issue }} was created"