Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

testing #4

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open

testing #4

wants to merge 6 commits into from

Conversation

nate-lynx-tech
Copy link
Contributor

No description provided.

# This is a basic workflow that is manually triggered

name: Boolean type input

# Controls when the action will run. Workflow runs when manually triggered using the UI
# or API.
on:
  workflow_dispatch:
    # Inputs the workflow accepts.
    inputs:
      iceCream:
        # Friendly description to be shown in the UI instead of 'name'
        description: 'Should eat ice cream'
        # Default value if no value is explicitly provided
        default: true
        # Input has to be provided for the workflow to run
        required: true

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
  # This workflow contains a single job called "greet"
  greet:
    # The type of runner that the job will run on
    runs-on: ubuntu-latest

    # Steps represent a sequence of tasks that will be executed as part of the job
    steps:
    # Runs a single command using the runners shell
    - name: Send greeting
      run: echo "Should eat ice cream ${{ github.event.inputs.iceCream }}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant