Skip to content

Commit 89e9d31

Browse files
committed
test
1 parent c084e8a commit 89e9d31

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

.github/workflows/post-trigger-workflow.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,9 @@ jobs:
1616
with:
1717
build-environment: linux
1818
secrets: inherit
19-
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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ concurrency:
1515
permissions: read-all
1616

1717
jobs:
18-
test-dispatch:
19-
- name: Invoke workflow with inputs
20-
uses: benc-uk/workflow-dispatch@v1
21-
with:
22-
workflow: post_test_dispatch.yml
23-
inputs: '{ "name": "blah blah"}'
18+
test-process:
19+
runs-on: ubuntu-latest
20+
steps:
21+
- name: Testing
22+
run: |
23+
echo "Workflow post-use-trigger-workflow: ${{ github.workflow }}"

0 commit comments

Comments
 (0)