Question: Can we create multiple Segment clients in one app? #170
This file contains hidden or 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: | |
| issues: | |
| types: | |
| - opened | |
| jobs: | |
| create_jira: | |
| name: Create Jira Ticket | |
| runs-on: ubuntu-latest | |
| environment: IssueTracker | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@master | |
| - 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_TOKEN }} | |
| - name: Create | |
| id: create | |
| uses: atlassian/gajira-create@master | |
| with: | |
| project: LIBRARIES | |
| issuetype: Bug | |
| summary: | | |
| [${{ github.event.repository.name }}] (${{ github.event.issue.number }}): ${{ github.event.issue.title }} | |
| description: | | |
| Github Link: ${{ github.event.issue.html_url }} | |
| ${{ github.event.issue.body }} | |
| # Parent and Epic Link fields (set to same) | |
| fields: '{ | |
| "parent": {"key": "LIBRARIES-2048"}, | |
| "customfield_10002": "LIBRARIES-2048" | |
| }' | |
| - name: Log created issue | |
| run: echo "Issue ${{ steps.create.outputs.issue }} was created" |