adding test workflows for reusable workflow v4

This commit is contained in:
Piasecki-grid 2025-04-11 09:41:13 +02:00
parent 3f4a063283
commit 3b2b1d42d5

View file

@ -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'