Skip to content

GAM Trigger - Dashboard-12345 by @rhods-devops-app[bot] #3

GAM Trigger - Dashboard-12345 by @rhods-devops-app[bot]

GAM Trigger - Dashboard-12345 by @rhods-devops-app[bot] #3

Workflow file for this run

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