We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19864b9 commit 089e461Copy full SHA for 089e461
1 file changed
.github/workflows/triage-scheduled-tasks.yml
@@ -6,6 +6,7 @@ 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:
@@ -24,3 +25,9 @@ jobs:
24
25
exempt_issue_labels: 'keep'
26
permissions:
27
issues: write
28
+
29
+ pitch-surface:
30
+ if: github.event.schedule == '0 14 1 * *' || github.event_name == 'workflow_dispatch'
31
+ uses: desktop/gh-cli-and-desktop-shared-workflows/.github/workflows/pitch-surface-top-issues.yml@main
32
+ permissions:
33
+ issues: write
0 commit comments