From 3b2b1d42d5470da4ab049405fd7bc5fc96ecef7d Mon Sep 17 00:00:00 2001 From: Piasecki-grid Date: Fri, 11 Apr 2025 09:41:13 +0200 Subject: [PATCH] adding test workflows for reusable workflow v4 --- .github/workflows/caller-1.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/caller-1.yml b/.github/workflows/caller-1.yml index 4805e3c27..fe3772ce8 100644 --- a/.github/workflows/caller-1.yml +++ b/.github/workflows/caller-1.yml @@ -18,3 +18,16 @@ jobs: config-path: '.github/labeler.yml' # Provide the required input secrets: token: ${{ secrets.GITHUB_TOKEN }} # Provide the required secret + + run-composite-action: + runs-on: ubuntu-latest + needs: second-caller # Optional: make it run after the reusable workflow + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Use Composite Action + uses: Piasecki-grid/composite-action-repo/actions/my-composite-action@main + with: + greeting: 'Hi there' + name: 'GitHub Actions User'