Skip to content

Commit db2eba8

Browse files
authored
Sync org-wide workflows and issue template (#7)
1 parent 8a2f993 commit db2eba8

File tree

5 files changed

+127
-0
lines changed

5 files changed

+127
-0
lines changed
Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
name: AppsFlyer Issue
2+
description: File an issue for AppsFlyer
3+
labels: []
4+
assignees: []
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
**⚠️ Before submitting, please read:**
10+
**For the fastest and most effective support, please contact the AppsFlyer support team using the Customer Assistant Chatbot. Only open a GitHub issue here if you believe this is a widespread bug affecting multiple users.**
11+
12+
👉 When you open a GitHub issue, please also open a support ticket with AppsFlyer support, and make sure to include a link to this GitHub issue in your support ticket. This helps us coordinate and resolve your problem more efficiently.
13+
14+
For troubleshooting or product guidance, use the [Customer Assistant Chatbot](https://support.appsflyer.com/hc/en-us/articles/23583984402193-Using-the-Customer-Assistant-Chatbot) as described in [this article](https://support.appsflyer.com/hc/en-us/articles/23583984402193-Using-the-Customer-Assistant-Chatbot).
15+
16+
---
17+
ℹ Please fill out this form as completely as possible to help us resolve your issue quickly.
18+
19+
- type: input
20+
id: plugin-version
21+
attributes:
22+
label: Plugin Version
23+
description: What version of the AppsFlyer plugin are you using? (e.g. 6.17.0)
24+
placeholder: e.g. 6.17.0
25+
validations:
26+
required: true
27+
28+
- type: input
29+
id: app-id
30+
attributes:
31+
label: App ID
32+
description: (Optional) Your app's ID. This helps us identify your account and provide optimal support.
33+
placeholder: e.g. com.example.app or id1234567890
34+
validations:
35+
required: false
36+
37+
- type: input
38+
id: email
39+
attributes:
40+
label: Email
41+
description: (Optional) Your AppsFlyer account email. This helps us identify your account and provide optimal support.
42+
placeholder: e.g. user@example.com
43+
validations:
44+
required: false
45+
46+
- type: input
47+
id: platform
48+
attributes:
49+
label: Platform(s)
50+
description: On which platform(s) are you having the issue? (e.g. iOS, Android)
51+
placeholder: e.g. iOS, Android
52+
validations:
53+
required: true
54+
55+
- type: textarea
56+
id: what-did-you-do
57+
attributes:
58+
label: What did you do?
59+
description: Describe the steps you took before encountering the issue.
60+
placeholder: e.g. Ran `pod install`
61+
validations:
62+
required: true
63+
64+
- type: textarea
65+
id: expected-behavior
66+
attributes:
67+
label: What did you expect to happen?
68+
description: Describe what you expected to happen.
69+
placeholder: e.g. Event to be logged
70+
validations:
71+
required: true
72+
73+
- type: textarea
74+
id: actual-behavior
75+
attributes:
76+
label: What happened instead?
77+
description: Describe what actually happened.
78+
placeholder: e.g. No uninstalls on my dashboard
79+
validations:
80+
required: true
81+
82+
- type: textarea
83+
id: other-info
84+
attributes:
85+
label: Any other relevant information
86+
description: Add any other context about the problem here.
87+
placeholder: e.g. The issue started when we upgraded the plugin to the latest version
88+
validations:
89+
required: false

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
blank_issues_enabled: false
2+
3+
contact_links:
4+
- name: AppsFlyer Support (Customer Assistant Chatbot)
5+
url: https://support.appsflyer.com/hc/en-us/articles/23583984402193-Using-the-Customer-Assistant-Chatbot
6+
about: For the fastest and most effective support, please contact the AppsFlyer support team using the Customer Assistant Chatbot.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# This workflow triggers the org-wide reusable workflow to close inactive issues on a schedule
2+
on:
3+
schedule:
4+
- cron: "0 10 * * *" # Runs daily at 10:00 UTC
5+
workflow_dispatch:
6+
7+
jobs:
8+
close-issues:
9+
uses: AppsFlyerSDK/github-common-workflow-and-template/.github/workflows/close_inactive_issues.yml@main
10+
secrets: inherit
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# This workflow triggers the org-wide reusable workflow to respond to issues labeled as 'support'
2+
on:
3+
issues:
4+
types:
5+
- labeled
6+
workflow_dispatch:
7+
8+
jobs:
9+
add-comment:
10+
uses: AppsFlyerSDK/github-common-workflow-and-template/.github/workflows/responseToSupportIssue.yml@main
11+
secrets: inherit
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# This workflow triggers the org-wide reusable workflow to respond to newly opened issues
2+
on:
3+
issues:
4+
types:
5+
- opened
6+
workflow_dispatch:
7+
8+
jobs:
9+
add-comment:
10+
uses: AppsFlyerSDK/github-common-workflow-and-template/.github/workflows/responseToSupportIssueOnOpen.yml@main
11+
secrets: inherit

0 commit comments

Comments
 (0)