Skip to content
This repository was archived by the owner on Nov 10, 2025. It is now read-only.

Commit b63696a

Browse files
committed
Test workflow-dispatch action
1 parent 55b40f6 commit b63696a

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/verify.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Verify
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
releaseVersion:
7+
description: 'Release version like 3.0.0-M1, 3.1.0-RC1, 3.2.0 etc.'
8+
required: true
9+
type: string
10+
11+
jobs:
12+
verify:
13+
runs-on: ubuntu-latest
14+
steps:
15+
16+
- name: Invoke verification workflow
17+
uses: aurelien-baudet/workflow-dispatch@v2
18+
with:
19+
workflow: verify-staged-artifacts.yml
20+
token: ${{ secrets.GH_ACTIONS_REPO_TOKEN }}
21+
inputs: '{ "releaseVersion": ${{ inputs.releaseVersion }} }'

0 commit comments

Comments
 (0)