This repository serves as a PoC of a custom GitHub Action. It accepts two inputs, one of which is optional, and echoes them. It also has an available output to use in subsequent steps.
- name: run own action
id: run-own
uses: SandroBarillaPXL/[email protected]
with:
input1: "ik geef een input1"
input2: "deze input is niet verplicht maar ik doe het toch"
- name: use action output
run: echo "The output of my action is ${{ steps.run-own.outputs.output1 }}"
For further explanation, please refer to docs.md.