We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c084e8a commit 89e9d31Copy full SHA for 89e9d31
.github/workflows/post-trigger-workflow.yml
@@ -16,4 +16,9 @@ jobs:
16
with:
17
build-environment: linux
18
secrets: inherit
19
-
+ test-dispatch:
20
+ - name: Invoke workflow with inputs
21
+ uses: benc-uk/workflow-dispatch@v1
22
+ with:
23
+ workflow: post_test_dispatch.yml
24
+ inputs: '{ "name": "blah blah"}'
.github/workflows/post-use-trigger-workflow.yml
@@ -15,9 +15,9 @@ concurrency:
15
permissions: read-all
jobs:
- test-dispatch:
- - name: Invoke workflow with inputs
- uses: benc-uk/workflow-dispatch@v1
- with:
- workflow: post_test_dispatch.yml
- inputs: '{ "name": "blah blah"}'
+ test-process:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Testing
+ run: |
+ echo "Workflow post-use-trigger-workflow: ${{ github.workflow }}"
0 commit comments