Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
blank_issues_enabled: false

contact_links:
- name: AppsFlyer Support (Customer Assistant Chatbot)
url: https://support.appsflyer.com/hc/en-us/articles/23583984402193-Using-the-Customer-Assistant-Chatbot
about: For the fastest and most effective support, please contact the AppsFlyer support team using the Customer Assistant Chatbot.
10 changes: 10 additions & 0 deletions .github/workflows/close_inactive_issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# This workflow triggers the org-wide reusable workflow to close inactive issues on a schedule
on:
schedule:
- cron: "0 10 * * *" # Runs daily at 10:00 UTC
workflow_dispatch:

jobs:
close-issues:
uses: AppsFlyerSDK/github-common-workflow-and-template/.github/workflows/close_inactive_issues.yml@main
secrets: inherit
11 changes: 11 additions & 0 deletions .github/workflows/responseToSupportIssue.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# This workflow triggers the org-wide reusable workflow to respond to issues labeled as 'support'
on:
issues:
types:
- labeled
workflow_dispatch:

jobs:
add-comment:
uses: AppsFlyerSDK/github-common-workflow-and-template/.github/workflows/responseToSupportIssue.yml@main
secrets: inherit
11 changes: 11 additions & 0 deletions .github/workflows/responseToSupportIssueOnOpen.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# This workflow triggers the org-wide reusable workflow to respond to newly opened issues
on:
issues:
types:
- opened
workflow_dispatch:

jobs:
add-comment:
uses: AppsFlyerSDK/github-common-workflow-and-template/.github/workflows/responseToSupportIssueOnOpen.yml@main
secrets: inherit