From b63696a8fb1aba7c3fa26851dbf0b7c914047d92 Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Thu, 16 Nov 2023 16:10:02 -0500 Subject: [PATCH] Test `workflow-dispatch` action --- .github/workflows/verify.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/verify.yml diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml new file mode 100644 index 0000000..836fd90 --- /dev/null +++ b/.github/workflows/verify.yml @@ -0,0 +1,21 @@ +name: Verify + +on: + workflow_dispatch: + inputs: + releaseVersion: + description: 'Release version like 3.0.0-M1, 3.1.0-RC1, 3.2.0 etc.' + required: true + type: string + +jobs: + verify: + runs-on: ubuntu-latest + steps: + + - name: Invoke verification workflow + uses: aurelien-baudet/workflow-dispatch@v2 + with: + workflow: verify-staged-artifacts.yml + token: ${{ secrets.GH_ACTIONS_REPO_TOKEN }} + inputs: '{ "releaseVersion": ${{ inputs.releaseVersion }} }' \ No newline at end of file