fix formatters to focus only on file extensions they can format #26
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 Usage Comment | |
| on: | |
| pull_request: | |
| types: [opened] | |
| jobs: | |
| comment: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Add comment to PR | |
| uses: peter-evans/create-or-update-comment@v3 | |
| with: | |
| issue-number: ${{ github.event.pull_request.number }} | |
| body: | | |
| Test this PR by running the following command: | |
| ``` | |
| dagger -m github.com/kpenfound/greetings-api@pull/${{ github.event.pull_request.number }}/head call check | |
| ``` | |
| Run this branch locally: | |
| ``` | |
| dagger -m github.com/kpenfound/greetings-api@pull/${{ github.event.pull_request.number }}/head call serve up | |
| ``` | |
| token: ${{ secrets.GITHUB_TOKEN }} |