diff --git a/.github/workflows/trivial-reusable.yaml b/.github/workflows/trivial-reusable.yaml new file mode 100644 index 00000000..6655b018 --- /dev/null +++ b/.github/workflows/trivial-reusable.yaml @@ -0,0 +1,10 @@ +name: Trivial Reusable Workflow (no actions) +on: + workflow_call: + +jobs: + hello: + runs-on: ubuntu-latest + steps: + - name: No actions here, just a shell command + run: echo "This reusable workflow has no uses: steps, only run: steps"