Skip to content

Commit 19689f9

Browse files
pranavz28claude
andauthored
ci: accept (and ignore) the branch input from percy/cli SDK regression (#17)
The percy/cli regression fan-out dispatches every SDK's test.yml with {branch: <cli branch>}. This workflow declared no inputs, so the dispatch API rejected it with 422 'Unexpected inputs provided'. Declare the input for dispatch compatibility; the suite itself never installs @percy/cli, so the value is unused. Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
1 parent f827748 commit 19689f9

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

.github/workflows/test.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,15 @@ on:
1010
pull_request:
1111
branches: [main, master]
1212
workflow_dispatch:
13+
inputs:
14+
# Sent by percy/cli's SDK regression fan-out. Accepted for dispatch
15+
# compatibility but unused: these tests exercise the GraalJS scripts in
16+
# a vm harness and never install @percy/cli.
17+
branch:
18+
description: CLI branch (ignored by this suite)
19+
required: false
20+
type: string
21+
default: master
1322

1423
jobs:
1524
test:

0 commit comments

Comments
 (0)