Jira Test #5
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
# 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 }} |