mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-04-24 19:32:48 +00:00
20 lines
565 B
YAML
20 lines
565 B
YAML
name: Caller-1
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
|
|
jobs:
|
|
call-reusable-workflow-1-in-local-repo:
|
|
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
|
|
|
|
second-caller:
|
|
uses: Piasecki-grid/test-workflows/.github/workflows/reusable-2.yml
|
|
with:
|
|
config-path: '.github/labeler.yml' # Provide the required input
|
|
secrets:
|
|
token: ${{ secrets.GITHUB_TOKEN }} # Provide the required secret
|