io.invertase.firebase.crashlytics.UnhandledPromiseRejection - Unable to resolve host "inapps.appsflyer.com": No address associated with hostname #115
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
# This workflow creates new comment from template to an issue | |
# if it was labled as 'support' | |
name: Add comment | |
on: | |
issues: | |
types: | |
- labeled | |
jobs: | |
add-comment: | |
if: github.event.label.name == 'support' | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- name: Add comment | |
uses: peter-evans/create-or-update-comment@a35cf36e5301d70b76f316e867e7788a55a31dae | |
with: | |
issue-number: ${{ github.event.issue.number }} | |
body: | | |
π Hi @${{ github.event.issue.user.login }} and Thank you for reaching out to us. | |
In order for us to provide optimal support, please submit a ticket to our support team at [email protected]. | |
When submitting the ticket, please specify: | |
- β your AppsFlyer sign-up (account) email | |
- β app ID | |
- β production steps | |
- β logs | |
- β code snippets | |
- β and any additional relevant information. |