Skip to content

Commit df8f862

Browse files
committed
chore: switch to the-actions-org/workflow-dispatch
1 parent 28f83a7 commit df8f862

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

.github/workflows/custopize.yml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -246,14 +246,22 @@ jobs:
246246
needs: build
247247
steps:
248248
- name: 🏃‍♀️ Run test against testrig
249-
uses: jonas-schievink/workflow-proxy@v1
249+
uses: the-actions-org/workflow-dispatch@v4
250+
env:
251+
RUN_NAME: "Testing OctoPi-UpToDate ${{ needs.build.outputs.tag }}"
250252
with:
251253
token: ${{ secrets.DISPATCH_TOKEN }}
252-
workflow: Test against testrig
253254
repo: OctoPrint/devtools
255+
workflow: test_against_testrig.yml
254256
ref: main
255-
inputs: '{"image": "${{ needs.build.outputs.image-url }}", "target": "pic", "e2e-branch": "${{ needs.build.outputs.e2e-branch }}"}'
256-
repost-logs: false
257+
run-name: ${{ env.RUN_NAME }}
258+
inputs: >-
259+
{
260+
"image": "${{ needs.build.outputs.image-url }}",
261+
"target": "pic",
262+
"e2e-branch": "${{ needs.build.outputs.e2e-branch }}",
263+
"run-name": "${{ env.RUN_NAME }}"
264+
}
257265
258266
deploy:
259267
name: "Deploy"

0 commit comments

Comments
 (0)