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 }}!"