12 lines
293 B
YAML
12 lines
293 B
YAML
name: Stop pg for tests
|
|
inputs:
|
|
service_name:
|
|
required: true
|
|
runs:
|
|
using: composite
|
|
env:
|
|
SERVICE_NAME: ${{ inputs.service_name }}
|
|
steps:
|
|
run: werf kubectl delete service/${SERVICE_NAME} --ignore-not-found
|
|
run: werf kubectl delete pod/${SERVICE_NAME} --ignore-not-found
|