We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcae00d commit eb3ab41Copy full SHA for eb3ab41
.github/workflows/ci.yaml
@@ -12,6 +12,7 @@ on:
12
push:
13
branches: ["**"] # Push commits to any branch
14
tags: ["v[0-9]*"] # Publish on tags matching "v*", eg. "v1.0.0"
15
+ workflow_dispatch: # Allow manual triggering of the workflow
16
17
# Configure the workflows here. Each environment variable name should be a
18
# wildcard matching the
@@ -33,6 +34,10 @@ env:
33
34
jobs=["test", "build", "publish-test"]
35
python-version=["3.9", "3.13"]
36
os=["ubuntu-latest"]
37
+ on-workflow_dispatch-*: | # Manual trigger of the workflow
38
+ jobs='["test", "build", "publish-test"]'
39
+ python-version=["3.9", "3.13"]
40
+ os=["ubuntu-latest"]
41
42
jobs:
43
config: # Select the workflow config based on the event trigger.
0 commit comments