Skip to content

chore: add .vs and .playwright-mcp to .gitignore #17

chore: add .vs and .playwright-mcp to .gitignore

chore: add .vs and .playwright-mcp to .gitignore #17

Workflow file for this run

name: Master Trigger

Check failure on line 1 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/main.yml

Invalid workflow file

(Line: 30, Col: 11): Unrecognized named-value: 'github'. Located at position 1 within expression: github.event.inputs.workflow_ref, (Line: 37, Col: 11): Unrecognized named-value: 'github'. Located at position 1 within expression: github.event.inputs.workflow_ref, (Line: 44, Col: 11): Unrecognized named-value: 'github'. Located at position 1 within expression: github.event.inputs.workflow_ref
on:
workflow_dispatch:
inputs:
api_branch:
description: 'Branch to use for API build'
required: true
default: 'main'
type: string
frontend_branch:
description: 'Branch to use for Frontend build'
required: true
default: 'main'
type: string
loadbalancer_branch:
description: 'Branch to use for Loadbalancer build'
required: true
default: 'main'
type: string
workflow_ref:
description: 'Branch containing workflow definitions'
required: true
default: 'main'
type: string
jobs:
call-workflow-1-in-local-repo:
name: API Build
uses: nitin27may/clean-architecture-docker-dotnet-angular/.github/workflows/api-build.yml@${{ github.event.inputs.workflow_ref }}
with:
ref: ${{ github.event.inputs.api_branch }}
secrets: inherit
call-workflow-2-in-local-repo:
name: Frontend Build
uses: nitin27may/clean-architecture-docker-dotnet-angular/.github/workflows/angular-build.yml@${{ github.event.inputs.workflow_ref }}
with:
ref: ${{ github.event.inputs.frontend_branch }}
secrets: inherit
call-workflow-3-in-local-repo:
name: Loadbalancer Build
uses: nitin27may/clean-architecture-docker-dotnet-angular/.github/workflows/loadbalancer.build.yml@${{ github.event.inputs.workflow_ref }}
with:
ref: ${{ github.event.inputs.loadbalancer_branch }}
secrets: inherit
# call-workflow-4-in-local-repo:
# name: AKS Deployment
# uses: nitin27may/clean-architecture-docker-dotnet-angular/.github/workflows/deployment.yml@${{ github.event.inputs.workflow_ref }}
# if: ${{ always() }}
# needs: [call-workflow-1-in-local-repo, call-workflow-2-in-local-repo, call-workflow-3-in-local-repo]
# secrets: inherit