f1cc6b8bd9
Bumps [actions/github-script](https://github.com/actions/github-script) from 6.3.3 to 6.4.1. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.3.3...v6.4.1) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
54 lines
1.5 KiB
YAML
54 lines
1.5 KiB
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:
|
|
- uses: actions/github-script@v6.4.1
|
|
id: check-conclusion
|
|
env:
|
|
number: ${{ github.event.number }}
|
|
with:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
result-encoding: string
|
|
script: |
|
|
const { data: pull } = await github.rest.pulls.get({
|
|
...context.repo,
|
|
pull_number: process.env.number
|
|
});
|
|
const ref = pull.head.sha;
|
|
|
|
const { data: checks } = await github.rest.checks.listForRef({
|
|
...context.repo,
|
|
ref
|
|
});
|
|
|
|
const check = checks.check_runs.filter(c => c.name === 'deploy-preview-environment');
|
|
|
|
if (check.length === 0) {
|
|
return;
|
|
}
|
|
|
|
const { data: result } = await github.rest.checks.get({
|
|
...context.repo,
|
|
check_run_id: check[0].id,
|
|
});
|
|
|
|
return result.conclusion;
|
|
- name: Context
|
|
if: steps.check-conclusion.outputs.result == 'success'
|
|
uses: okteto/context@latest
|
|
with:
|
|
token: ${{ secrets.OKTETO_TOKEN }}
|
|
|
|
- name: Destroy preview environment
|
|
if: steps.check-conclusion.outputs.result == 'success'
|
|
uses: okteto/destroy-preview@latest
|
|
with:
|
|
name: pr-${{ github.event.number }}-syuilo
|