Skip to content

action-test

action-test #1125

Workflow file for this run

name: action-test
on:
workflow_dispatch:
inputs:
distinct_id:
required: true
cake: # Test for input passthrough.
required: true
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: echo distinct ID ${{ github.event.inputs.distinct_id }}
run: echo ${{ github.event.inputs.distinct_id }}
- name: echo input passthrough
run: echo ${{ github.event.inputs.cake }}