From bed88744ed8f54dc7fefc102cc7bd105a8fffc90 Mon Sep 17 00:00:00 2001 From: Brian DeGeeter Date: Sun, 11 Feb 2024 14:41:17 -0800 Subject: [PATCH] chore: add description to gh actions workflow inputs Signed-off-by: Brian DeGeeter --- .github/workflows/porter-canary.yml | 10 ++++++---- .github/workflows/test-porter-release.yml | 8 +++++--- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/.github/workflows/porter-canary.yml b/.github/workflows/porter-canary.yml index 79a159c23..264a88a0b 100644 --- a/.github/workflows/porter-canary.yml +++ b/.github/workflows/porter-canary.yml @@ -3,24 +3,26 @@ on: workflow_dispatch: inputs: shouldPublish: + description: Should Publish default: true type: boolean required: false skipTests: + description: Skip Tests default: false type: boolean required: false push: branches: - - main - - release/* + - main + - release/* pull_request: branches: - - split-builds + - split-builds jobs: build_pipelinesrelease_template: name: build_pipelinesrelease_template - uses: "./.github/workflows/build_pipelinesrelease_template.yml" + uses: './.github/workflows/build_pipelinesrelease_template.yml' with: registry: ghcr.io/getporter shouldPublish: ${{inputs.shouldPublish}} diff --git a/.github/workflows/test-porter-release.yml b/.github/workflows/test-porter-release.yml index 177fee700..97444d2da 100644 --- a/.github/workflows/test-porter-release.yml +++ b/.github/workflows/test-porter-release.yml @@ -3,24 +3,26 @@ on: workflow_dispatch: inputs: shouldPublish: + description: Should Publish default: true type: boolean required: false skipTests: + description: Skip Tests default: true type: boolean required: false pull_request: branches: - - main + - main env: PORTER_PACKAGES_REMOTE: https://github.com/carolynvs/porter-packages.git PORTER_RELEASE_REPOSITORY: github.com/carolynvs/porter jobs: build_pipelinesrelease_template: name: build_pipelinesrelease_template - uses: "./.github/workflows/build_pipelinesrelease_template.yml" + uses: './.github/workflows/build_pipelinesrelease_template.yml' with: registry: ghcr.io/getporter/test shouldPublish: ${{ inputs.shouldPublish }} - skipTests: ${{ inputs.skipTests }} \ No newline at end of file + skipTests: ${{ inputs.skipTests }}