From 089e461087f5cdbcf1585c45e464f1b974edaedf Mon Sep 17 00:00:00 2001 From: tidy-dev <75402236+tidy-dev@users.noreply.github.com> Date: Tue, 10 Mar 2026 09:30:57 -0400 Subject: [PATCH] Add pitch surfacing workflow (monthly + manual dispatch) --- .github/workflows/triage-scheduled-tasks.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/triage-scheduled-tasks.yml b/.github/workflows/triage-scheduled-tasks.yml index 8dd0793b2..0da0ef2c8 100644 --- a/.github/workflows/triage-scheduled-tasks.yml +++ b/.github/workflows/triage-scheduled-tasks.yml @@ -6,6 +6,7 @@ on: schedule: - cron: '5 * * * *' # Hourly — no-response close - cron: '0 3 * * *' # Daily at 3 AM UTC — stale issues + - cron: '0 14 1 * *' # Monthly on the 1st at 2 PM UTC — pitch surfacing jobs: no-response: @@ -24,3 +25,9 @@ jobs: exempt_issue_labels: 'keep' permissions: issues: write + + pitch-surface: + if: github.event.schedule == '0 14 1 * *' || github.event_name == 'workflow_dispatch' + uses: desktop/gh-cli-and-desktop-shared-workflows/.github/workflows/pitch-surface-top-issues.yml@main + permissions: + issues: write