From 824b87b5efb5653f545761a6db2e006ce22aa44b Mon Sep 17 00:00:00 2001 From: Brian Giori Date: Tue, 2 Apr 2024 10:54:19 -0700 Subject: [PATCH] chore: remove jira test action --- .github/workflows/test-jira.yml | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 .github/workflows/test-jira.yml diff --git a/.github/workflows/test-jira.yml b/.github/workflows/test-jira.yml deleted file mode 100644 index e5b5e9e..0000000 --- a/.github/workflows/test-jira.yml +++ /dev/null @@ -1,23 +0,0 @@ -# Creates jira tickets for new github issues to help triage -name: Jira Test - -on: - workflow_dispatch: - inputs: - baseUrl: - required: true - type: string - description: the base jira url - -jobs: - build: - runs-on: ubuntu-latest - environment: Jira - name: SDK Bot Jira Issue Creation - steps: - - name: Login - uses: atlassian/gajira-login@master - env: - JIRA_BASE_URL: ${{ github.event.inputs.baseUrl }} - JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }} - JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }}