From 7738ee65f2ecfeb026f4c9b09ce52b08e9bb3c92 Mon Sep 17 00:00:00 2001 From: Alex Sedighi Date: Fri, 9 Feb 2024 17:50:26 +1300 Subject: [PATCH] chore: allow us to run some CI jobs manually when we need (#822) --- .github/workflows/ci.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c2eaffa57a6..a712f7bd48b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,7 +5,15 @@ on: branches: - master pull_request: - + workflow_dispatch: + inputs: + tag: + description: 'Tag to run the workflow on' + required: true + run_specific_job: + description: 'Specify a job to run (test-runtime, try-runtime-execute, etc.)' + required: true + env: toolchain: stable target: wasm32-unknown-unknown