Merge pull request #12894 from cli/tidy-dev/add-pitch-surfacing
Add monthly pitch surfacing workflow
This commit is contained in:
commit
e8cc7f9436
1 changed files with 8 additions and 0 deletions
8
.github/workflows/triage-scheduled-tasks.yml
vendored
8
.github/workflows/triage-scheduled-tasks.yml
vendored
|
|
@ -6,9 +6,11 @@ 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:
|
||||
if: github.event_name == 'issue_comment' || github.event.schedule == '5 * * * *'
|
||||
uses: desktop/gh-cli-and-desktop-shared-workflows/.github/workflows/triage-no-response-close.yml@main
|
||||
permissions:
|
||||
issues: write
|
||||
|
|
@ -24,3 +26,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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue