feat(action): Try test composite local action
Some checks failed
/ test (push) Successful in 54s
/ asdf (push) Failing after 0s

This commit is contained in:
Scott 2026-09-08 10:28:47 +10:00
commit 8384d2f68f
2 changed files with 27 additions and 1 deletions

View file

@ -0,0 +1,22 @@
inputs:
# input-one:
# default: 'one'
# description: 'description one'
# input-two-required:
# description: 'description two'
# required: true
outputs:
key:
description: 'output value'
value: "${{ steps.one.outputs.key }}"
runs:
using: "composite"
steps:
- name: FORGEJO_ACTION_PATH
run: |
set -x
test -e "$FORGEJO_ACTION_PATH"
test "$FORGEJO_ACTION_PATH" = "${{ env.FORGEJO_ACTION_PATH }}"
- run: echo key=${{ inputs.input-two-required }} >> $FORGEJO_OUTPUT