Bun applies cwd's bunfig.toml to hashbang scripts from linked packages, breaking bun-created cli's
#3989
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: Auto Assign Types Issues | |
| on: | |
| issues: | |
| types: [labeled] | |
| jobs: | |
| auto-assign: | |
| runs-on: ubuntu-latest | |
| if: github.event.label.name == 'types' | |
| permissions: | |
| issues: write | |
| steps: | |
| - name: Assign to alii | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| GH_REPO: ${{ github.repository }} | |
| run: | | |
| gh issue edit ${{ github.event.issue.number }} --add-assignee alii |