Skip to content

Commit 00eeab9

Browse files
authored
Add input string for repos to pr triage board dispatch (#15)
See jupyter/pr-triage-board-bot#57 for the explanation of the GraphQL query 502. This will allow us to manually dispatch the bot with a subset of the napari repos (like just napari-plugin-template, or something small) to see if the 502 is related to the query just being too big when its org wide
1 parent da971a3 commit 00eeab9

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/triage_board.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ on:
55
schedule:
66
- cron: '0 */4 * * *' # Run every 4 hours
77
workflow_dispatch:
8+
inputs:
9+
repositories:
10+
description: Optional comma-separated repository list for scoped manual runs
11+
required: false
12+
type: string
813

914
permissions: {}
1015

@@ -20,4 +25,4 @@ jobs:
2025
gh-app-id: '3461445'
2126
gh-app-installation-id: '126023418'
2227
gh-app-private-key: ${{ secrets.GH_APP_PRIVATE_KEY }}
23-
# repositories: 'napari' # queries entire org unless comma-separated repos are added here
28+
repositories: ${{ github.event.inputs.repositories }}

0 commit comments

Comments
 (0)