Skip to content

Commit 7d0dda0

Browse files
Merge pull request #52 from dsp-testing/robertbrignull/fix-manual-test-workflow
Fix manual test workflow
2 parents 7f93f3c + 6888c34 commit 7d0dda0

1 file changed

Lines changed: 11 additions & 1 deletion

File tree

.github/workflows/manual-test.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,20 @@
11
name: "Manual test"
22

3+
# Allows running a Go query against the dsp-testing/qc-demo-github-certstore
4+
# test repo. Only works for that repo as it relies on a repository secret.
5+
# Can be triggered on test branches to test changes.
6+
7+
# The Actions UI doesn't handle newlines in the inputs at all, so this
8+
# cannot be reliably triggered from the UI. For best results use the API.
9+
# e.g. curl https://api.github.com/repos/dsp-testing/qc-run2/actions/workflows/manual-test.yml/dispatches -X POST -d '{"ref":"my-branch", "inputs": {"query": "my query"}}'
10+
311
on:
412
workflow_dispatch:
513
inputs:
614
query:
7-
default: "import go\nfrom File f select f"
15+
default: |
16+
import go
17+
from File f select f
818
919
jobs:
1020
run-query:

0 commit comments

Comments
 (0)