Add goodbye script #25
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Manual Workflow | ||
on: | ||
push: | ||
workflow_dispatch: | ||
inputs: | ||
environment: | ||
description: 'Environment to deploy to' | ||
required: true | ||
default: 'production' | ||
num-octocats: | ||
description: 'Number of Octocats' | ||
required: false | ||
default: '1' | ||
octocat-eye-color: | ||
description: 'Eye color of the Octocats' | ||
required: true | ||
jobs: ex_job_name | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Print environment | ||
run: echo "Deploying to ${{ github.event.inputs.environment }}" | ||
run: echo "Is this the name or ID of this job: ${{ github.job }}" |