Skip to content

Instantly share code, notes, and snippets.

@amnuts
Created August 29, 2023 11:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amnuts/78a55b7bde58814123bbd14ac8090a48 to your computer and use it in GitHub Desktop.
Save amnuts/78a55b7bde58814123bbd14ac8090a48 to your computer and use it in GitHub Desktop.
View inputs on a GitHub Action
on:
workflow_dispatch:
inputs:
some_input:
default: "input value"
jobs:
do_something:
steps:
- name: "Show inputs"
run: echo "${{ toJSON(github.event.inputs) }}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment