Skip to content

chore(analytics): fix tsconfig references #2027

chore(analytics): fix tsconfig references

chore(analytics): fix tsconfig references #2027

Workflow file for this run

name: pr cleanup
# This workflow cleans up cache entries when a pull request is closed
# It runs the clear-cache action to remove cached build artifacts and dependencies
# for the specific PR branch to free up storage space and prevent cache bloat
#
# Why these permissions are needed:
# - contents: read - Required to checkout the repository
# - actions: write - Required for gh actions-cache delete command in clear-cache action
permissions:
contents: read
# Required for gh actions-cache delete command in clear-cache action
actions: write
on:
pull_request:
types:
- closed
jobs:
cleanup:
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v6
- name: clear pull request cache
uses: ./.github/actions/clear-cache
with:
branch: refs/pull/${{ github.event.pull_request.number }}/merge