fix: empty report setting will use the value in a config file if it is defined, otherwise use all
#240
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: autofix.ci | |
| on: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| autofix: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: streetsidesoftware/actions/public/setup-node-pnpm@v1 | |
| - run: | | |
| pnpm i | |
| pnpm run clean-build | |
| - uses: autofix-ci/action@635ffb0c9798bd160680f18fd73371e355b85f27 |