Replace manual resolution algorithm with oxc_resolver
#1
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: Clean up PR caches | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| on: | |
| pull_request: | |
| types: | |
| - closed | |
| jobs: | |
| cleanup: | |
| runs-on: ubuntu-latest | |
| if: false | |
| steps: | |
| - name: 🧹 Cleanup | |
| shell: bash | |
| id: cleanup | |
| run: | | |
| REF="refs/pull/${{ github.event.pull_request.number }}/merge" | |
| run_id=$(gh workflow run cleanup.yaml \ | |
| --ref ${{ github.ref }} \ | |
| --field reference=$REF \ | |
| --repo ${{ github.repository }}) || exit 1 | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| GH_REPO: ${{ github.repository }} |