Improve landscape UX #60
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: JIRA | |
on: | |
issues: | |
types: [opened] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Jira Issue | |
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 Issue | |
id: create | |
uses: andresilveirah/gajira-create@master | |
with: | |
project: DIA | |
issuetype: Bug | |
summary: "[iOS] ${{github.event.issue.title}}" | |
description: "${{github.event.issue.body}}\n This issue was reported by ${{github.event.issue.user.login}} via GitHub.\n ${{github.event.issue.html_url}}" | |
labels: "In-App,GitHub" | |
customFields: '{"11003":{"value":"Dialogue - Client SDKs","child":{"value":"iOS"}}}' |