Skip to content

feat: add environment #26

feat: add environment

feat: add environment #26

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-for-ci.yml
call-composite-workflow:
if: ${{ vars.CAN_EXECUTE_COMPOSITE_WORKFLOW == 'true' }}
runs-on: ubuntu-latest
environment: Development
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Call Greeting Workflow
uses: ./.github/workflows/utilities/composite-workflow
with:
name: "Desarrollador"
message: "Hola"