Skip to content

Commit f0e4f75

Browse files
authored
Sync org-wide workflows and issue template (#100)
1 parent dd4db62 commit f0e4f75

File tree

5 files changed

+38
-46
lines changed

5 files changed

+38
-46
lines changed

.github/ISSUE_TEMPLATE/appsflyer-issue-template.md

Lines changed: 0 additions & 46 deletions
This file was deleted.

.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)