Skip to content

fix: use reusable workflow as step #17

fix: use reusable workflow as step

fix: use reusable workflow as step #17

Workflow file for this run

name: Workflow CI
description: A workflow that calls reusable and composite workflows.
permissions:
contents: read
on: [push]
jobs:
call-reusable-workflow:
uses: ./.github/workflows/reusable-workflow-ci.yml

Check failure on line 8 in .github/workflows/workflow-ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/workflow-ci.yml

Invalid workflow file

error parsing called workflow ".github/workflows/workflow-ci.yml" -> "./.github/workflows/reusable-workflow-ci.yml" : failed to fetch workflow: workflow was not found.
call-composite-workflow:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Call Greeting Workflow
uses: ./.github/workflows/utilities/composite-workflow
with:
name: "Desarrollador"
message: "Hola"