Skip to content

Instantly share code, notes, and snippets.

@KyMidd
Created May 31, 2023 19:28
Show Gist options
  • Save KyMidd/4035f6b82cc568cdc790ecf835964505 to your computer and use it in GitHub Desktop.
Save KyMidd/4035f6b82cc568cdc790ecf835964505 to your computer and use it in GitHub Desktop.
name: 'Callable Action'
description: 'I do stuff'
inputs:
input1:
description: 'Input 1'
required: true
input2:
description: 'Input 2'
required: true
runs:
using: "composite"
steps:
- id: action_stuff_here
shell: bash
run: |
#Parameters
input1="${{ inputs.input1 }}"
# Do other stuff here
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment