From cd316efc6e1495c29fdf612c024506ea39e9051f Mon Sep 17 00:00:00 2001 From: Piasecki-grid Date: Fri, 11 Apr 2025 09:10:48 +0200 Subject: [PATCH] adding test workflows for reusable workflow v1 --- .github/workflows/caller-1.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/caller-1.yml b/.github/workflows/caller-1.yml index 1db8c6252..15e5c4ecb 100644 --- a/.github/workflows/caller-1.yml +++ b/.github/workflows/caller-1.yml @@ -1,8 +1,13 @@ -name: Successfull merge pipeline +name: Caller-1 on: workflow_dispatch: push: + jobs: call-reusable-workflow-1-in-local-repo: - uses: ./.github/workflows/reusable-1.yml \ No newline at end of file + uses: ./.github/workflows/reusable-1.yml + with: + config-path: '.github/labeler.yml' # Provide the required input + secrets: + token: ${{ secrets.GITHUB_TOKEN }} # Provide the required secret \ No newline at end of file