tweak: make bash give agent more awareness of cwd, bump default timeout, drop max timeout #5706
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: format | |
| on: | |
| push: | |
| branches-ignore: | |
| - production | |
| pull_request: | |
| branches-ignore: | |
| - production | |
| workflow_dispatch: | |
| jobs: | |
| format: | |
| runs-on: blacksmith-4vcpu-ubuntu-2404 | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Setup Bun | |
| uses: ./.github/actions/setup-bun | |
| - name: run | |
| run: | | |
| ./script/format.ts | |
| env: | |
| CI: true |