Skip to content

fix: validator stats categories and count accuracy #26

fix: validator stats categories and count accuracy

fix: validator stats categories and count accuracy #26

Workflow file for this run

name: Preview Cleanup
on:
pull_request_target:
types: [closed]
jobs:
cleanup:
runs-on: ubuntu-latest
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
steps:
- uses: superfly/flyctl-actions/setup-flyctl@master
- name: Delete preview app
run: |
PREVIEW_APP="yaci-explorer-pr-${{ github.event.pull_request.number }}"
if flyctl apps list | grep -q "$PREVIEW_APP"; then
echo "Deleting preview app: $PREVIEW_APP"
flyctl apps destroy "$PREVIEW_APP" --yes
else
echo "Preview app $PREVIEW_APP does not exist, skipping"
fi