From 60eb0ca8df79044ec16ef847a4c56d8c7363d7c9 Mon Sep 17 00:00:00 2001 From: dfeldick Date: Mon, 12 Aug 2024 15:17:30 -0700 Subject: [PATCH 1/2] APIGOV-00001 - workflow test --- .github/workflows/test.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/test.yaml diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml new file mode 100644 index 0000000..05984b0 --- /dev/null +++ b/.github/workflows/test.yaml @@ -0,0 +1,16 @@ +# this action is triggered by selecting the action in the github UI and then clicking "run workflow" +name: Fully automated release + +on: + workflow_dispatch: + promotiontype: + description: Promotion type (major, minor, patch) + required: true + default": 'patch' + +jobs: + printInputs: + runs-on: ubuntu-latest + steps: + - run: | + echo "Env: ${{ github.event.inputs.promotiontype }}" From c5adf6a88b917847f21fd818eedb1f4e4777db0a Mon Sep 17 00:00:00 2001 From: dfeldick Date: Mon, 12 Aug 2024 15:19:00 -0700 Subject: [PATCH 2/2] APIGOV-00001 - fix --- .github/workflows/test.yaml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 05984b0..947c4ea 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -1,12 +1,13 @@ # this action is triggered by selecting the action in the github UI and then clicking "run workflow" -name: Fully automated release +name: testing on: workflow_dispatch: - promotiontype: - description: Promotion type (major, minor, patch) - required: true - default": 'patch' + inputs: + promotiontype: + description: Promotion type (major, minor, patch) + required: true + default: 'patch' jobs: printInputs: