Inputs and Outputs for actions
Kısaca Örnek Action Dosyası (action.yml)
name: "Draw Octocats"
description: "Draws a certain number of Octocats with specified eye color"
inputs:
num-octocats:
description: "Number of Octocats"
required: false
default: "1"
octocat-eye-color:
description: "Eye color of the Octocats"
required: true
outputs:
sum:
description: "The sum of the inputs"
runs:
using: "node20"
main: "main.js"Sonuç
Last updated