mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 15:45:58 +09:00
22 lines
474 B
YAML
22 lines
474 B
YAML
# file: .github/workflows/preview-closed.yaml
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- closed
|
|
|
|
name: Destroy preview environment
|
|
|
|
jobs:
|
|
destroy-preview-environment:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Context
|
|
uses: okteto/context@latest
|
|
with:
|
|
token: ${{ secrets.OKTETO_TOKEN }}
|
|
|
|
- name: Destroy preview environment
|
|
uses: okteto/destroy-preview@latest
|
|
with:
|
|
name: pr-${{ github.event.number }}-syuilo
|