chore(analytics): fix tsconfig references #2027
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |