Created
August 29, 2023 11:00
-
-
Save amnuts/78a55b7bde58814123bbd14ac8090a48 to your computer and use it in GitHub Desktop.
View inputs on a GitHub Action
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
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