Answers for "github action run workflow manually"

0

github action run workflow manually

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 }}!"
Posted by: Guest on October-24-2021

Code answers related to "github action run workflow manually"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language