From 5c61e02b5592ca9a1a90dc57fd56a079a7b9a443 Mon Sep 17 00:00:00 2001 From: jon8787 <112368577+jon8787@users.noreply.github.com> Date: Fri, 17 Apr 2026 13:45:13 +1000 Subject: [PATCH] Add trivial reusable workflow for SHA pinning experiment Workflow with only run: steps (no uses: actions) to test whether cross-org reusable workflow calls by tag/branch succeed when there are no unpinned actions inside. --- .github/workflows/trivial-reusable.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/workflows/trivial-reusable.yaml 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"