From 63bd57166e5c907c0bffcea69c76d2baef03b4f5 Mon Sep 17 00:00:00 2001 From: Aleksandra Zalcman Date: Fri, 12 Feb 2021 16:50:58 -0800 Subject: [PATCH] Create main_release.yml --- .github/workflows/main_release.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/main_release.yml diff --git a/.github/workflows/main_release.yml b/.github/workflows/main_release.yml new file mode 100644 index 0000000..b463c1f --- /dev/null +++ b/.github/workflows/main_release.yml @@ -0,0 +1,20 @@ +name: Manually triggered workflow +on: + workflow_dispatch: + inputs: + name: + description: 'Person to greet' + required: true + default: 'Mona the Octocat' + home: + description: 'location' + required: false + default: 'The Octoverse' + +jobs: + say_hello: + runs-on: ubuntu-latest + steps: + - run: | + echo "Hello ${{ github.event.inputs.name }}!" + echo "- in ${{ github.event.inputs.home }}!"