Skip to content

Commit e8cc7f9

Browse files
authored
Merge pull request #12894 from cli/tidy-dev/add-pitch-surfacing
Add monthly pitch surfacing workflow
2 parents 8f26730 + c9afc3c commit e8cc7f9

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

.github/workflows/triage-scheduled-tasks.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,11 @@ on:
66
schedule:
77
- cron: '5 * * * *' # Hourly — no-response close
88
- 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
910

1011
jobs:
1112
no-response:
13+
if: github.event_name == 'issue_comment' || github.event.schedule == '5 * * * *'
1214
uses: desktop/gh-cli-and-desktop-shared-workflows/.github/workflows/triage-no-response-close.yml@main
1315
permissions:
1416
issues: write
@@ -24,3 +26,9 @@ jobs:
2426
exempt_issue_labels: 'keep'
2527
permissions:
2628
issues: write
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

Comments
 (0)