diff --git a/.github/workflows/test-docker-build-complex.yml b/.github/workflows/test-docker-build-complex.yml index fa68ca0..5ab89dd 100644 --- a/.github/workflows/test-docker-build-complex.yml +++ b/.github/workflows/test-docker-build-complex.yml @@ -5,8 +5,16 @@ on: # # Added pull_request to register workflow from the PR. # # Read more https://stackoverflow.com/questions/63362126/github-actions-how-to-run-a-workflow-created-on-a-non-master-branch-from-the-wo # pull_request: {} - workflow_dispatch: {} - + workflow_dispatch: + inputs: + ref: + description: "The fully-formed ref of the branch or tag that triggered the workflow run" + required: false + type: "string" + sha: + description: "The sha of the commit that triggered the workflow run" + required: false + type: "string" jobs: setup: runs-on: ubuntu-latest diff --git a/.github/workflows/test-docker-build-multi-platform.yml b/.github/workflows/test-docker-build-multi-platform.yml index f0df6bd..55f97d4 100644 --- a/.github/workflows/test-docker-build-multi-platform.yml +++ b/.github/workflows/test-docker-build-multi-platform.yml @@ -5,8 +5,16 @@ on: # # Added pull_request to register workflow from the PR. # # Read more https://stackoverflow.com/questions/63362126/github-actions-how-to-run-a-workflow-created-on-a-non-master-branch-from-the-wo # pull_request: {} - workflow_dispatch: {} - + workflow_dispatch: + inputs: + ref: + description: "The fully-formed ref of the branch or tag that triggered the workflow run" + required: false + type: "string" + sha: + description: "The sha of the commit that triggered the workflow run" + required: false + type: "string" jobs: setup: runs-on: ubuntu-latest diff --git a/.github/workflows/test-docker-build.yml b/.github/workflows/test-docker-build.yml index fc7e7b4..36bfe92 100644 --- a/.github/workflows/test-docker-build.yml +++ b/.github/workflows/test-docker-build.yml @@ -5,8 +5,16 @@ on: # # Added pull_request to register workflow from the PR. # # Read more https://stackoverflow.com/questions/63362126/github-actions-how-to-run-a-workflow-created-on-a-non-master-branch-from-the-wo # pull_request: {} - workflow_dispatch: {} - + workflow_dispatch: + inputs: + ref: + description: "The fully-formed ref of the branch or tag that triggered the workflow run" + required: false + type: "string" + sha: + description: "The sha of the commit that triggered the workflow run" + required: false + type: "string" jobs: setup: runs-on: ubuntu-latest