We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8f26730 + c9afc3c commit e8cc7f9Copy full SHA for e8cc7f9
1 file changed
.github/workflows/triage-scheduled-tasks.yml
@@ -6,9 +6,11 @@ on:
6
schedule:
7
- cron: '5 * * * *' # Hourly — no-response close
8
- cron: '0 3 * * *' # Daily at 3 AM UTC — stale issues
9
+ - cron: '0 14 1 * *' # Monthly on the 1st at 2 PM UTC — pitch surfacing
10
11
jobs:
12
no-response:
13
+ if: github.event_name == 'issue_comment' || github.event.schedule == '5 * * * *'
14
uses: desktop/gh-cli-and-desktop-shared-workflows/.github/workflows/triage-no-response-close.yml@main
15
permissions:
16
issues: write
@@ -24,3 +26,9 @@ jobs:
24
26
exempt_issue_labels: 'keep'
25
27
28
29
+
30
+ pitch-surface:
31
+ if: github.event.schedule == '0 14 1 * *' || github.event_name == 'workflow_dispatch'
32
+ uses: desktop/gh-cli-and-desktop-shared-workflows/.github/workflows/pitch-surface-top-issues.yml@main
33
+ permissions:
34
+ issues: write
0 commit comments