mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-04-24 11:22:48 +00:00
adding test workflows for reusable workflow v4
This commit is contained in:
parent
3f4a063283
commit
3b2b1d42d5
1 changed files with 13 additions and 0 deletions
13
.github/workflows/caller-1.yml
vendored
13
.github/workflows/caller-1.yml
vendored
|
@ -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'
|
||||
|
|
Loading…
Reference in a new issue