GAM Trigger - Dashboard-12345 by @rhods-devops-app[bot] #3
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: Test Trigger From GH CLI | |
run-name: GAM Trigger - ${{ inputs.component }}-${{ inputs.workflow_run_id }} by @${{ github.actor }} | |
on: | |
workflow_dispatch: | |
inputs: | |
component: | |
type: choice | |
description: select component | |
options: | |
- Dashboard | |
workflow_run_id: | |
description: 'Execution ID (default is current date and time)' | |
default: "12345" | |
required: false | |
jobs: | |
print-message: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Print a message | |
run: | | |
echo "Hello, this is a workflow triggered by workflow_dispatch!" | |
echo "Component: ${{ inputs.component }}" | |
echo "Workflow Run ID: ${{ inputs.workflow_run_id }}" | |