Skip to content

Commit b7b483a

Browse files
committed
Sync org-wide workflows and issue template
1 parent 6351a68 commit b7b483a

File tree

4 files changed

+32
-23
lines changed

4 files changed

+32
-23
lines changed
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: 5 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,11 @@
1-
# This workflow creates new comment from template to an issue
2-
# if it was labled as 'support'
3-
4-
name: Add comment and close
1+
# This workflow triggers the org-wide reusable workflow to respond to issues labeled as 'support'
52
on:
63
issues:
74
types:
85
- labeled
6+
workflow_dispatch:
7+
98
jobs:
109
add-comment:
11-
if: github.event.label.name == 'support'
12-
runs-on: ubuntu-latest
13-
permissions:
14-
issues: write
15-
steps:
16-
- name: Add comment and close issue
17-
uses: peter-evans/close-issue@v2
18-
with:
19-
issue-number: ${{ github.event.issue.number }}
20-
comment: |
21-
πŸ‘‹ Hi @${{ github.event.issue.user.login }} and Thank you for reaching out to us.
22-
In order for us to provide optimal support, please submit a ticket to our support team at [email protected].
23-
When submitting the ticket, please specify:
24-
- βœ… your AppsFlyer sign-up (account) email
25-
- βœ… app ID
26-
- βœ… production steps
27-
- βœ… logs
28-
- βœ… code snippets
29-
- βœ… and any additional relevant information.
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)