Skip to content

Workflow file for this run

on:
workflow_dispatch:
inputs:
user_name:
description: λ°°ν¬ν•œ μ‚¬μš©μž
required: true
type: string
stage_choice:
description: 배포 μœ ν˜• (production,devleop)
type: choice
options:
- develop
- production
run-name: '${{inputs.user_name}} runs workflow for ${{inputs.stage_choice}} deploy'
jobs:
deploy:
uses: './.github/workflows/deploy-integration.yml'

Check failure on line 19 in .github/workflows/deploy-test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/deploy-test.yml

Invalid workflow file

error parsing called workflow ".github/workflows/deploy-test.yml" -> "./.github/workflows/deploy-integration.yml" (source branch with sha:e1e67aaefa6ded02159fb76ef45af198f521b38a) : You have an error in your yaml syntax on line 21
with:
user_name: ${{inputs.user_name}}
stage: ${{inputs.stage_choice}}
secrets:
ACCESS_TOKEN: ${{secrets.ACCESS_TOKEN}}