The SDK appears to attempt connections to 127.0.0.1 instead of the Amplitude endpoint (api2.amplitude.com). #72
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 Issue Creator For Flutter | |
on: | |
issues: | |
types: [opened] | |
workflow_call: | |
inputs: | |
label: | |
type: string | |
jobs: | |
call-workflow-passing-data: | |
uses: amplitude/Amplitude-TypeScript/.github/workflows/jira-issue-create-template.yml@main | |
with: | |
label: "Flutter" | |
subcomponent: "dx_flutter_sdk" | |
secrets: | |
JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }} | |
JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }} | |
JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }} | |
JIRA_PROJECT: ${{ secrets.JIRA_PROJECT }} |