Skip to content

Commit 6b8b4ca

Browse files
committed
Remove workflow_call input and add schedule/issues/pull_request/workflow_dispatch triggers
1 parent ccc71cd commit 6b8b4ca

1 file changed

Lines changed: 8 additions & 5 deletions

File tree

.github/workflows/copilot-triage.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
on:
22
workflow_call:
3-
inputs:
4-
additional_context:
5-
type: 'string'
6-
description: 'Any additional context from the request'
7-
required: false
3+
schedule:
4+
- cron: '0 * * * *' # Runs every hour
5+
issues:
6+
types: [opened, edited, reopened]
7+
pull_request:
8+
branches:
9+
- 'main'
10+
workflow_dispatch:
811

912
jobs:
1013
triage:

0 commit comments

Comments
 (0)